5 | Sorry, but nothing exists here.
6 | Find something interesting to read.
7 |
├── archetypes └── default.md ├── images ├── tn.png └── screenshot.png ├── layouts ├── partials │ ├── css │ │ └── variables.css │ ├── back-to-top.html │ ├── footer.html │ ├── tag_cloud.html │ ├── pagination.html │ ├── table-of-contents.html │ ├── nav.html │ ├── header.html │ ├── open_graph.html │ └── scripts.html ├── _default │ ├── baseof.html │ ├── list.html │ ├── tag.html │ ├── terms.html │ └── single.html ├── 404.html ├── index.html └── index.atom.xml ├── theme.toml ├── LICENSE.md ├── README.md └── static └── css ├── styles.css └── tachyons.min.css /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxz/er/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lingxz/er/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /layouts/partials/css/variables.css: -------------------------------------------------------------------------------- 1 | /*https://coolors.co/afd5aa-f0f2ef-a69f98-3d3d3d-8c6057*/ 2 | :root { 3 | --main-color: #8C6056; 4 | --secondary-color: #AFD5AA; 5 | --logo-text-color: #fff; 6 | --body-text-color: #3d3d3d; 7 | --heading-text-color: #383838; 8 | --background-color: #fff; 9 | } -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
{{ partial "header.html" . }} 4 | 5 | {{ partial "nav.html" . }} 6 | {{ block "main" . }}{{ end }} 7 | {{ partial "footer.html" . }} 8 | {{ partial "scripts.html" . }} 9 | 10 | -------------------------------------------------------------------------------- /layouts/partials/back-to-top.html: -------------------------------------------------------------------------------- 1 | {{ if .Site.Params.showScrollToTop | default true }} 2 | back to top 3 | {{ end }} -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |
5 | Sorry, but nothing exists here.
6 | Find something interesting to read.
7 |
Page {{ .Paginator.PageNumber }} of {{ .Paginator.TotalPages }}
5 | {{ if .Paginator.HasNext }}Older Posts{{ end }}
6 | {{ if .Paginator.HasPrev }}Newer Posts{{ end }}
7 |
9 | 10 | {{ if or .Params.tags .Params.categories }} | {{ end }} 11 | {{ if isset .Params "categories" }} 12 | categories: [ {{ range .Params.categories }}{{ . }} {{ end }} ] 13 | {{ end }} 14 | {{ if isset .Params "tags" }} 15 | tags: [ {{ range .Params.tags }}{{ . }} {{ end }} ] 16 | {{ end }} 17 |
18 |22 | {{ with .PrevInSection }}{{ if . }}prev post{{ end }}{{ end }} 23 | {{ with .NextInSection }}{{ if . }}next post{{ end }}{{ end }} 24 |
25 |