Skip to content

Commit f663e18

Browse files
committed
init
0 parents  commit f663e18

93 files changed

Lines changed: 7056 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitmodules

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[submodule "blog/themes/ananke"]
2+
path = blog/themes/ananke
3+
url = https://github.com/theNewDynamic/gohugo-theme-ananke
4+
[submodule "blog/themes/hello-friend"]
5+
path = blog/themes/hello-friend
6+
url = https://github.com/panr/hugo-theme-hello-friend.git
7+
[submodule "blog/themes/hugo-coder"]
8+
path = blog/themes/hugo-coder
9+
url = https://github.com/luizdepra/hugo-coder.git
10+
[submodule "blog/themes/hugo-theme-stack"]
11+
path = blog/themes/hugo-theme-stack
12+
url = https://github.com/CaiJimmy/hugo-theme-stack/

blog/.hugo_build.lock

Whitespace-only changes.

blog/archetypes/default.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---
6+

blog/config.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
baseurl: https://svfcode.github.io
2+
languageCode: en-us
3+
theme: hugo-theme-stack
4+
paginate: 8
5+
title: My blog
6+
7+
permalinks:
8+
post: /p/:slug/
9+
page: /:slug/
10+
11+
DefaultContentLanguage: ru
12+
languages:
13+
en:
14+
languageName: en
15+
title: Example Site 123
16+
description: Example description
17+
weight: 2
18+
ru:
19+
languageName: ru
20+
title: тест
21+
description: тест description
22+
weight: 1
23+
24+
params:
25+
widgets:
26+
homepage:
27+
- type: search
28+
- type: archives
29+
params:
30+
limit: 5
31+
- type: categories
32+
params:
33+
limit: 10
34+
- type: tag-cloud
35+
params:
36+
limit: 10
37+
page:
38+
- type: toc

blog/content/about/index.en.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: About
3+
description: Hugo, the world's fastest framework for building websites
4+
date: '2019-02-28'
5+
---
6+
7+
What intresting

blog/content/about/index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: Обо мне
3+
description: Hugo, the world's fastest framework for building websites
4+
date: '2019-02-28'
5+
menu:
6+
main:
7+
weight: -90
8+
params:
9+
icon: user
10+
---
11+
12+
То что скажу
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: "Test"
3+
description: "This is an example category"
4+
slug: "test"
5+
image: "hutomo-abrianto-l2jk-uxb1BY-unsplash.jpg"
6+
style:
7+
background: "#2a9d8f"
8+
color: "#fff"
9+
---
51.7 KB
Loading

blog/content/hello/index.en.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: Hello
3+
description: Hugo, the world's fastest framework for building websites
4+
date: '2019-02-28'
5+
menu:
6+
main:
7+
weight: -90
8+
params:
9+
icon: user
10+
---
11+
12+
Hi en

blog/content/hello/index.ru.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: Hi
3+
description: Hugo, the world's fastest framework for building websites
4+
date: '2019-02-28'
5+
menu:
6+
main:
7+
weight: -90
8+
params:
9+
icon: user
10+
---
11+
12+
Hi

0 commit comments

Comments
 (0)