Pages in {{ .Title }}
8 |-
11 | {{ range .Data.Pages }}
12 |
- 13 | {{ .Title }}{{ if .Draft }} #Draft{{ end }} 14 | 17 | 18 | {{ end }} 19 |
├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── VERSION.txt ├── archetypes └── default.md ├── images ├── screenshot.png └── tn.png ├── layouts ├── _default │ ├── list.html │ └── single.html ├── index.html ├── partials │ ├── footer.html │ ├── header.html │ ├── sidebar-list.html │ └── sidebar-single.html └── section │ └── index.html ├── static ├── css │ ├── bootie-docs.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── highlight │ │ ├── agate.css │ │ ├── androidstudio.css │ │ ├── arduino-light.css │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── atelier-cave-dark.css │ │ ├── atelier-cave-light.css │ │ ├── atelier-dune-dark.css │ │ ├── atelier-dune-light.css │ │ ├── atelier-estuary-dark.css │ │ ├── atelier-estuary-light.css │ │ ├── atelier-forest-dark.css │ │ ├── atelier-forest-light.css │ │ ├── atelier-heath-dark.css │ │ ├── atelier-heath-light.css │ │ ├── atelier-lakeside-dark.css │ │ ├── atelier-lakeside-light.css │ │ ├── atelier-plateau-dark.css │ │ ├── atelier-plateau-light.css │ │ ├── atelier-savanna-dark.css │ │ ├── atelier-savanna-light.css │ │ ├── atelier-seaside-dark.css │ │ ├── atelier-seaside-light.css │ │ ├── atelier-sulphurpool-dark.css │ │ ├── atelier-sulphurpool-light.css │ │ ├── atom-one-dark.css │ │ ├── atom-one-light.css │ │ ├── brown-paper.css │ │ ├── brown-papersq.png │ │ ├── codepen-embed.css │ │ ├── color-brewer.css │ │ ├── darcula.css │ │ ├── dark.css │ │ ├── darkula.css │ │ ├── default.css │ │ ├── docco.css │ │ ├── dracula.css │ │ ├── far.css │ │ ├── foundation.css │ │ ├── github-gist.css │ │ ├── github.css │ │ ├── googlecode.css │ │ ├── grayscale.css │ │ ├── gruvbox-dark.css │ │ ├── gruvbox-light.css │ │ ├── hopscotch.css │ │ ├── hybrid.css │ │ ├── idea.css │ │ ├── ir-black.css │ │ ├── kimbie.dark.css │ │ ├── kimbie.light.css │ │ ├── magula.css │ │ ├── mono-blue.css │ │ ├── monokai-sublime.css │ │ ├── monokai.css │ │ ├── obsidian.css │ │ ├── ocean.css │ │ ├── paraiso-dark.css │ │ ├── paraiso-light.css │ │ ├── pojoaque.css │ │ ├── pojoaque.jpg │ │ ├── purebasic.css │ │ ├── qtcreator_dark.css │ │ ├── qtcreator_light.css │ │ ├── railscasts.css │ │ ├── rainbow.css │ │ ├── routeros.css │ │ ├── school-book.css │ │ ├── school-book.png │ │ ├── solarized-dark.css │ │ ├── solarized-light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow.css │ │ ├── vs.css │ │ ├── vs2015.css │ │ ├── xcode.css │ │ ├── xt256.css │ │ └── zenburn.css │ ├── site.css │ └── theme.css ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootie-docs.js │ ├── bootstrap.min.js │ ├── highlight.pack.js │ ├── ie-emulation-modes-warning.js │ ├── ie10-viewport-bug-workaround.js │ └── jquery.min.js └── theme.toml /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.5.1 (2018/3/28) 2 | 3 | Fix: 4 | 5 | - Add `img` property "max-width" in CSS (#34) 6 | - Fix #33 by Dmitry Verkhoturov (@paskal) 7 | 8 | ## 1.5.0 (2017/7/30) 9 | 10 | Change: 11 | 12 | - Upgrade dependent components (#32): 13 | - bootstrap.css to v3.3.7 (was v3.3.6) 14 | - jQuery to v3.2.1 (was v1.12.3) 15 | - highlight.js to v9.12.0 (was v9.3.0) 16 | 17 | ## 1.4.0 (2017/7/20) 18 | 19 | Change: 20 | 21 | - Move repository location from [@key-amb's](https://github.com/key-amb/) to 22 | [@progrhyme's](https://github.com/progrhyme/) (#31) 23 | 24 | ## 1.3.2 (2017/5/21) 25 | 26 | Improve: 27 | 28 | - Add media query for sidebar so that it don't overlay screen in narrow browsers 29 | (#29) @jodumont 30 | 31 | ## 1.3.1 (2017/3/5) 32 | 33 | Enhance: 34 | 35 | - Add site-customized CSS as `static/css/site.css` for one to customize site's 36 | look & feel (#27) 37 | 38 | ## 1.3.0 (2017/3/5) 39 | 40 | Change: 41 | 42 | - Apply Hugo's [Menu System](https://gohugo.io/extras/menus/) for header 43 | navigation (#26) 44 | 45 | ## 1.2.0 (2017/1/12) 46 | 47 | Change: 48 | 49 | - Use `.IsHome` to detect site home (#21) 50 | - Fix #20 by Ethan Madison (@ethanmad) 51 | - Not to append trailing `"/"` to match menu link in header.html (#21) 52 | 53 | ## 1.1.3 (2017/1/11) 54 | 55 | Fix: 56 | 57 | - Avoid to use `{{ if isset .Params "fooBar" }}` syntax because it doesn't work 58 | for Hugo v0.18.x currently (#19) 59 | - Fix #18 by Ethan Madison (@ethanmad) 60 | 61 | ## 1.1.2 (2017/1/5) 62 | 63 | Improve: 64 | 65 | - Removes extra padding-bottom in `body` tag which is in no need (#17) 66 | - Fix #16 by Ethan Madison (@ethanmad) 67 | 68 | ## 1.1.1 (2016/5/7) 69 | 70 | Change: 71 | 72 | - Shows page list by categories for all pages 73 | - Shows in sidebar for basic single page or listing page 74 | - Shows at bottom in top page `/` 75 | 76 | ## 1.1.0 (2016/5/7) 77 | 78 | Change: 79 | 80 | - Format of `params.mainMenu` becomes array of tables. 81 | - **CAUTION: this change is backward incompatiable** 82 | 83 | ## 1.0.3 (2016/5/6) 84 | 85 | Bug Fix: 86 | 87 | - Issues caused by fixed sidebar introduced in v1.0.0: 88 | - It corrupted looks in narrow browsers (#12) 89 | - "Back to Top" link at bottom of page did not restore original position of 90 | sidebar (#11) 91 | 92 | ## 1.0.2 (2016/5/5) 93 | 94 | Improve: 95 | 96 | - Apply default styles for tables in main content 97 | - Don't break lines in code blocks 98 | - Support wider view 99 | 100 | And minor style change. 101 | 102 | ## 1.0.1 (2016/5/5) 103 | 104 | Feature: 105 | 106 | - Add optional search form powered by Google's site search 107 | 108 | ## 1.0.0 (2016/5/5) 109 | 110 | Improve: 111 | 112 | - Fix sidebar position for single page 113 | 114 | ## 0.9.2 (2016/5/5) 115 | 116 | Feature: 117 | 118 | - Add new template for section `index/` page which shows all page list in the 119 | site 120 | 121 | Change: 122 | 123 | - Simplify page list style using `
{{ with .Site.Params.description }}{{ . }}{{ else }}You can customize this text by params "description" in your config.toml
.{{ end }}