├── exampleSite ├── static │ └── .gitkeep ├── content │ ├── post │ │ ├── _index.md │ │ ├── rich-content.md │ │ ├── placeholder-text.md │ │ └── markdown-syntax.md │ └── about.md ├── data │ └── l10n.toml └── config.toml ├── layouts ├── partials │ ├── tracking.html │ ├── related.html │ ├── footer.html │ ├── post-meta.html │ ├── pagination.html │ ├── tags-list.html │ ├── nav.html │ ├── post-list.html │ ├── head.html │ └── icons.html ├── _default │ ├── list.html │ ├── terms.html │ ├── baseof.html │ └── single.html ├── 404.html └── index.html ├── images ├── tn.png └── screenshot.png ├── static ├── favicon.ico ├── img │ ├── avatar.png │ ├── sample_feature_img.png │ ├── sample_feature_img_2.png │ └── sample_feature_img_3.png ├── apple-touch-icon.png └── css │ └── main.css ├── archetypes └── default.md ├── .editorconfig ├── theme.toml ├── LICENSE.md ├── CHANGELOG.md └── README.md /exampleSite/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/tracking.html: -------------------------------------------------------------------------------- 1 | {{ template "_internal/google_analytics.html" . }} -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-type-theme/master/images/tn.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-type-theme/master/static/favicon.ico -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-type-theme/master/images/screenshot.png -------------------------------------------------------------------------------- /static/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-type-theme/master/static/img/avatar.png -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | draft = true 3 | tags = [] 4 | categories = [] 5 | featureimage = "" 6 | menu = "" 7 | +++ -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-type-theme/master/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/img/sample_feature_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-type-theme/master/static/img/sample_feature_img.png -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" -}} 2 | {{ partial "tags-list.html" . }} 3 | {{ partial "pagination.html" . }} 4 | {{- end }} 5 | -------------------------------------------------------------------------------- /static/img/sample_feature_img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-type-theme/master/static/img/sample_feature_img_2.png -------------------------------------------------------------------------------- /static/img/sample_feature_img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-type-theme/master/static/img/sample_feature_img_3.png -------------------------------------------------------------------------------- /exampleSite/content/post/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | aliases = ["posts","articles","blog","showcase"] 3 | title = "Posts" 4 | author = "Hugo Authors" 5 | tags = ["index"] 6 | +++ -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | indent_size = 2 8 | indent_style = tab 9 | end_of_line = lf 10 | trim_trailing_whitespace = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | 15 | [*.{html,css,js,yaml,toml,json}] 16 | indent_size = 4 -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- 1 | {{ define "main" -}} 2 |
Test
86 | 87 | 88 | ``` 89 | #### Code block indented with four spaces 90 | 91 | 92 | 93 | 94 | 95 |Test
99 | 100 | 101 | 102 | #### Code block with Hugo's internal highlight shortcode 103 | {{< highlight html >}} 104 | 105 | 106 | 107 | 108 |Test
112 | 113 | 114 | {{< /highlight >}} 115 | 116 | ## List Types 117 | 118 | #### Ordered List 119 | 120 | 1. First item 121 | 2. Second item 122 | 3. Third item 123 | 124 | #### Unordered List 125 | 126 | * List item 127 | * Another item 128 | * And another item 129 | 130 | #### Nested list 131 | 132 | * Item 133 | 1. First Sub-item 134 | 2. Second Sub-item 135 | 136 | ## Other Elements — abbr, sub, sup, kbd, mark 137 | 138 | GIF is a bitmap image format. 139 | 140 | H2O 141 | 142 | Xn + Yn = Zn 143 | 144 | Press CTRL+ALT+Delete to end the session. 145 | 146 | Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures. 147 | 148 | -------------------------------------------------------------------------------- /layouts/partials/icons.html: -------------------------------------------------------------------------------- 1 | {{ with .Site.Params.social.homepage -}} 2 |