├── .gitignore
├── exampleSite
├── data
│ └── .gitkeep
├── layouts
│ └── partials
│ │ └── adsense
│ │ ├── content.html
│ │ └── sidebar.html
├── static
│ └── images
│ │ └── 2016
│ │ └── 05
│ │ └── 03
│ │ ├── list.png
│ │ └── screenshot.png
├── content
│ └── post
│ │ └── 2016
│ │ └── 05
│ │ ├── sample-post1.md
│ │ ├── sample-post2.md
│ │ ├── sample-post3.md
│ │ ├── sample-post4.md
│ │ ├── sample-post5.md
│ │ ├── sample-post6.md
│ │ ├── sample-post7.md
│ │ ├── sample-post8.md
│ │ ├── sample-post9.md
│ │ ├── sample-post10.md
│ │ └── how-to-install-Geppaku-theme.md
└── config.toml
├── layouts
├── index.html
├── 404.html
├── partials
│ ├── tags.html
│ ├── footer.html
│ ├── sidebar.html
│ ├── header.html
│ └── share.html
└── _default
│ ├── list.html
│ ├── rss.xml
│ └── single.html
├── images
├── list.png
├── tn.png
└── screenshot.png
├── static
├── images
│ └── favicon.ico
└── css
│ └── style.css
├── archetypes
└── default.md
├── theme.toml
├── LICENSE.md
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/exampleSite/data/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/layouts/index.html:
--------------------------------------------------------------------------------
1 | {{ template "theme/_default/list.html" . }}
2 |
--------------------------------------------------------------------------------
/images/list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/masa0221/hugo-theme-geppaku/HEAD/images/list.png
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/masa0221/hugo-theme-geppaku/HEAD/images/tn.png
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/masa0221/hugo-theme-geppaku/HEAD/images/screenshot.png
--------------------------------------------------------------------------------
/static/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/masa0221/hugo-theme-geppaku/HEAD/static/images/favicon.ico
--------------------------------------------------------------------------------
/archetypes/default.md:
--------------------------------------------------------------------------------
1 | +++
2 | date = ""
3 | draft = false
4 | title = ""
5 | slug = ""
6 | categories = [""]
7 | tags = [""]
8 | +++
9 |
--------------------------------------------------------------------------------
/exampleSite/layouts/partials/adsense/content.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/exampleSite/layouts/partials/adsense/sidebar.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/exampleSite/static/images/2016/05/03/list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/masa0221/hugo-theme-geppaku/HEAD/exampleSite/static/images/2016/05/03/list.png
--------------------------------------------------------------------------------
/exampleSite/static/images/2016/05/03/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/masa0221/hugo-theme-geppaku/HEAD/exampleSite/static/images/2016/05/03/screenshot.png
--------------------------------------------------------------------------------
/layouts/404.html:
--------------------------------------------------------------------------------
1 | {{ partial "header.html" . }}
2 | 404 Page Not Found!
3 | Sorry, This page is not exist.
4 | {{ partial "footer.html" . }}
5 |
--------------------------------------------------------------------------------
/layouts/partials/tags.html:
--------------------------------------------------------------------------------
1 | {{if .Params.tags }}
2 |
11 | {{ end }}
12 |
--------------------------------------------------------------------------------
/theme.toml:
--------------------------------------------------------------------------------
1 | name = "Geppaku"
2 | license = "MIT"
3 | licenselink = "https://github.com/masa0221/hugo-theme-geppaku/blob/master/LICENSE.md"
4 | description = "Geppaku is bluish white theme for Hugo"
5 | homepage = "https://github.com/masa0221/hugo-theme-geppaku"
6 | tags = ["blog", "personal"]
7 | features = ["blog"]
8 | min_version = 0.15
9 |
10 | [author]
11 | name = "Masashi Tsuru"
12 | homepage = "http://2626.info/"
13 |
--------------------------------------------------------------------------------
/exampleSite/content/post/2016/05/sample-post1.md:
--------------------------------------------------------------------------------
1 | +++
2 | date = "2016-05-03T00:01:00+09:00"
3 | draft = false
4 | title = "Sample Post 1"
5 | slug = "sample-post-1"
6 | categories = ["sample"]
7 | tags = [
8 | "Hugo theme",
9 | "Go lang"
10 | ]
11 | +++
12 | This is sample post.
13 |
14 | ## H2 sample
15 | This is H2 tag.
16 |
17 | ### H3 sample
18 |
19 | > This is quotation
20 | > This is quotation
21 | > This is quotation
22 | via http://www.example.com/
23 |
24 | It is quotation sample.
25 |
26 |
27 | #### H4 sample
28 |
29 | ```go
30 | package main
31 |
32 | import "fmt"
33 |
34 | func main() {
35 | fmt.Println("Hello, Hugo!")
36 | }
37 | ```
38 | [Try Go](https://golang.org/)
39 |
40 | It is codehighlight.
41 |
42 |
--------------------------------------------------------------------------------
/exampleSite/content/post/2016/05/sample-post2.md:
--------------------------------------------------------------------------------
1 | +++
2 | date = "2016-05-03T02:00:00+09:00"
3 | draft = false
4 | title = "Sample Post 2"
5 | slug = "sample-post-2"
6 | categories = ["sample"]
7 | tags = [
8 | "Hugo theme",
9 | "Go lang"
10 | ]
11 | +++
12 | This is sample post.
13 |
14 | ## H2 sample
15 | This is H2 tag.
16 |
17 | ### H3 sample
18 |
19 | > This is quotation
20 | > This is quotation
21 | > This is quotation
22 | via http://www.example.com/
23 |
24 | It is quotation sample.
25 |
26 |
27 | #### H4 sample
28 |
29 | ```go
30 | package main
31 |
32 | import "fmt"
33 |
34 | func main() {
35 | fmt.Println("Hello, Hugo!")
36 | }
37 | ```
38 | [Try Go](https://golang.org/)
39 |
40 | It is codehighlight.
41 |
42 |
--------------------------------------------------------------------------------
/exampleSite/content/post/2016/05/sample-post3.md:
--------------------------------------------------------------------------------
1 | +++
2 | date = "2016-05-03T03:00:00+09:00"
3 | draft = false
4 | title = "Sample Post 3"
5 | slug = "sample-post-3"
6 | categories = ["sample"]
7 | tags = [
8 | "Hugo theme",
9 | "Go lang"
10 | ]
11 | +++
12 | This is sample post.
13 |
14 | ## H2 sample
15 | This is H2 tag.
16 |
17 | ### H3 sample
18 |
19 | > This is quotation
20 | > This is quotation
21 | > This is quotation
22 | via http://www.example.com/
23 |
24 | It is quotation sample.
25 |
26 |
27 | #### H4 sample
28 |
29 | ```go
30 | package main
31 |
32 | import "fmt"
33 |
34 | func main() {
35 | fmt.Println("Hello, Hugo!")
36 | }
37 | ```
38 | [Try Go](https://golang.org/)
39 |
40 | It is codehighlight.
41 |
42 |
--------------------------------------------------------------------------------
/exampleSite/content/post/2016/05/sample-post4.md:
--------------------------------------------------------------------------------
1 | +++
2 | date = "2016-05-03T04:00:00+09:00"
3 | draft = false
4 | title = "Sample Post 4"
5 | slug = "sample-post-4"
6 | categories = ["sample"]
7 | tags = [
8 | "Hugo theme",
9 | "Go lang"
10 | ]
11 | +++
12 | This is sample post.
13 |
14 | ## H2 sample
15 | This is H2 tag.
16 |
17 | ### H3 sample
18 |
19 | > This is quotation
20 | > This is quotation
21 | > This is quotation
22 | via http://www.example.com/
23 |
24 | It is quotation sample.
25 |
26 |
27 | #### H4 sample
28 |
29 | ```go
30 | package main
31 |
32 | import "fmt"
33 |
34 | func main() {
35 | fmt.Println("Hello, Hugo!")
36 | }
37 | ```
38 | [Try Go](https://golang.org/)
39 |
40 | It is codehighlight.
41 |
42 |
--------------------------------------------------------------------------------
/exampleSite/content/post/2016/05/sample-post5.md:
--------------------------------------------------------------------------------
1 | +++
2 | date = "2016-05-03T05:00:00+09:00"
3 | draft = false
4 | title = "Sample Post 5"
5 | slug = "sample-post-5"
6 | categories = ["sample"]
7 | tags = [
8 | "Hugo theme",
9 | "Go lang"
10 | ]
11 | +++
12 | This is sample post.
13 |
14 | ## H2 sample
15 | This is H2 tag.
16 |
17 | ### H3 sample
18 |
19 | > This is quotation
20 | > This is quotation
21 | > This is quotation
22 | via http://www.example.com/
23 |
24 | It is quotation sample.
25 |
26 |
27 | #### H4 sample
28 |
29 | ```go
30 | package main
31 |
32 | import "fmt"
33 |
34 | func main() {
35 | fmt.Println("Hello, Hugo!")
36 | }
37 | ```
38 | [Try Go](https://golang.org/)
39 |
40 | It is codehighlight.
41 |
42 |
--------------------------------------------------------------------------------
/exampleSite/content/post/2016/05/sample-post6.md:
--------------------------------------------------------------------------------
1 | +++
2 | date = "2016-05-03T06:00:00+09:00"
3 | draft = false
4 | title = "Sample Post 6"
5 | slug = "sample-post-6"
6 | categories = ["sample"]
7 | tags = [
8 | "Hugo theme",
9 | "Go lang"
10 | ]
11 | +++
12 | This is sample post.
13 |
14 | ## H2 sample
15 | This is H2 tag.
16 |
17 | ### H3 sample
18 |
19 | > This is quotation
20 | > This is quotation
21 | > This is quotation
22 | via http://www.example.com/
23 |
24 | It is quotation sample.
25 |
26 |
27 | #### H4 sample
28 |
29 | ```go
30 | package main
31 |
32 | import "fmt"
33 |
34 | func main() {
35 | fmt.Println("Hello, Hugo!")
36 | }
37 | ```
38 | [Try Go](https://golang.org/)
39 |
40 | It is codehighlight.
41 |
42 |
--------------------------------------------------------------------------------
/exampleSite/content/post/2016/05/sample-post7.md:
--------------------------------------------------------------------------------
1 | +++
2 | date = "2016-05-03T07:00:00+09:00"
3 | draft = false
4 | title = "Sample Post 7"
5 | slug = "sample-post-7"
6 | categories = ["sample"]
7 | tags = [
8 | "Hugo theme",
9 | "Go lang"
10 | ]
11 | +++
12 | This is sample post.
13 |
14 | ## H2 sample
15 | This is H2 tag.
16 |
17 | ### H3 sample
18 |
19 | > This is quotation
20 | > This is quotation
21 | > This is quotation
22 | via http://www.example.com/
23 |
24 | It is quotation sample.
25 |
26 |
27 | #### H4 sample
28 |
29 | ```go
30 | package main
31 |
32 | import "fmt"
33 |
34 | func main() {
35 | fmt.Println("Hello, Hugo!")
36 | }
37 | ```
38 | [Try Go](https://golang.org/)
39 |
40 | It is codehighlight.
41 |
42 |
--------------------------------------------------------------------------------
/exampleSite/content/post/2016/05/sample-post8.md:
--------------------------------------------------------------------------------
1 | +++
2 | date = "2016-05-03T08:00:00+09:00"
3 | draft = false
4 | title = "Sample Post 8"
5 | slug = "sample-post-8"
6 | categories = ["sample"]
7 | tags = [
8 | "Hugo theme",
9 | "Go lang"
10 | ]
11 | +++
12 | This is sample post.
13 |
14 | ## H2 sample
15 | This is H2 tag.
16 |
17 | ### H3 sample
18 |
19 | > This is quotation
20 | > This is quotation
21 | > This is quotation
22 | via http://www.example.com/
23 |
24 | It is quotation sample.
25 |
26 |
27 | #### H4 sample
28 |
29 | ```go
30 | package main
31 |
32 | import "fmt"
33 |
34 | func main() {
35 | fmt.Println("Hello, Hugo!")
36 | }
37 | ```
38 | [Try Go](https://golang.org/)
39 |
40 | It is codehighlight.
41 |
42 |
--------------------------------------------------------------------------------
/exampleSite/content/post/2016/05/sample-post9.md:
--------------------------------------------------------------------------------
1 | +++
2 | date = "2016-05-03T09:00:00+09:00"
3 | draft = false
4 | title = "Sample Post 9"
5 | slug = "sample-post-9"
6 | categories = ["sample"]
7 | tags = [
8 | "Hugo theme",
9 | "Go lang"
10 | ]
11 | +++
12 | This is sample post.
13 |
14 | ## H2 sample
15 | This is H2 tag.
16 |
17 | ### H3 sample
18 |
19 | > This is quotation
20 | > This is quotation
21 | > This is quotation
22 | via http://www.example.com/
23 |
24 | It is quotation sample.
25 |
26 |
27 | #### H4 sample
28 |
29 | ```go
30 | package main
31 |
32 | import "fmt"
33 |
34 | func main() {
35 | fmt.Println("Hello, Hugo!")
36 | }
37 | ```
38 | [Try Go](https://golang.org/)
39 |
40 | It is codehighlight.
41 |
42 |
--------------------------------------------------------------------------------
/layouts/partials/footer.html:
--------------------------------------------------------------------------------
1 |
2 | {{ partial "sidebar.html" . }}
3 |
4 |
18 |
19 |