├── exampleSite
├── content
│ ├── media
│ │ ├── _index.md
│ │ ├── video.mp4
│ │ └── image-1.jpg
│ ├── tags
│ │ └── _index.md
│ ├── posts
│ │ ├── 2014
│ │ │ ├── hugoisforlovers.md
│ │ │ ├── migrate-from-jekyll.md
│ │ │ └── goisforlovers.md
│ │ ├── 2016
│ │ │ └── lorem-ipsum.md
│ │ ├── 2017
│ │ │ ├── gist.md
│ │ │ ├── vimeo.md
│ │ │ ├── youtube.md
│ │ │ ├── twitter.md
│ │ │ ├── video.md
│ │ │ ├── speakerdeck.md
│ │ │ ├── instagram.md
│ │ │ ├── tables.md
│ │ │ ├── code.md
│ │ │ ├── images.md
│ │ │ └── typography.md
│ │ ├── 2019
│ │ │ └── numbered_list.md
│ │ └── _index.md
│ ├── categories
│ │ └── _index.md
│ ├── photos.md
│ ├── _index.md
│ └── projects.md
└── config.toml
├── images
├── tn.png
└── screenshot.png
├── layouts
├── 404.html
├── _default
│ ├── list.html
│ ├── taxonomy.html
│ ├── terms.html
│ ├── baseof.html
│ ├── rss.xml
│ └── single.html
├── page
│ └── single.html
├── shortcodes
│ ├── youtube.html
│ ├── vimeo.html
│ ├── speakerdeck.html
│ ├── video.html
│ ├── adsense.html
│ └── image.html
├── partials
│ ├── navbar.html
│ ├── footer.html
│ ├── posts_list.html
│ └── head.html
├── index.html
└── sitemap.xml
├── .gitignore
├── assets
└── src
│ ├── images
│ ├── favicon.ico
│ └── apple-touch-icon.png
│ ├── styles
│ ├── _components
│ │ ├── homepage.scss
│ │ ├── elements.scss
│ │ ├── footer.scss
│ │ ├── base.scss
│ │ ├── navbar.scss
│ │ └── content.scss
│ ├── styles.scss
│ ├── _settings.scss
│ ├── _chroma_friendly.scss
│ └── _external
│ │ ├── baguetteBox.css
│ │ ├── normalize.css
│ │ └── milligram.css
│ └── scripts
│ ├── main.js
│ └── _external
│ ├── lazyload.js
│ ├── headroom.js
│ └── baguetteBox.js
├── archetypes
├── page.md
└── default.md
├── resources
└── _gen
│ ├── assets
│ ├── scss
│ │ └── src
│ │ │ └── styles
│ │ │ ├── styles.scss_6e769e1f8b8c9ae08c3b967a8651114c.json
│ │ │ └── styles.scss_6e769e1f8b8c9ae08c3b967a8651114c.content
│ ├── css
│ │ └── assets
│ │ │ └── css
│ │ │ ├── external.css_d3f53f09220d597dac26fe7840c31fc9.json
│ │ │ └── external.css_d3f53f09220d597dac26fe7840c31fc9.content
│ └── js
│ │ └── assets
│ │ └── js
│ │ └── scripts.js_d3f53f09220d597dac26fe7840c31fc9.json
│ └── images
│ └── media
│ ├── image-1_hu3d03a01dcc18bc5be0e67db3d8d209a6_1073788_320x0_resize_q75_box.jpg
│ ├── image-1_hu3d03a01dcc18bc5be0e67db3d8d209a6_1073788_480x0_resize_q75_box.jpg
│ └── image-1_hu3d03a01dcc18bc5be0e67db3d8d209a6_1073788_768x0_resize_q75_box.jpg
├── i18n
├── en.toml
└── pl.toml
├── theme.toml
├── LICENSE
└── README.md
/exampleSite/content/media/_index.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Media Folder
3 | ---
4 |
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eshlox/simplicity/HEAD/images/tn.png
--------------------------------------------------------------------------------
/layouts/404.html:
--------------------------------------------------------------------------------
1 | {{ define "main" }}
2 | :no_entry_sign: 404 :cry:
3 | {{ end }}
4 |
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eshlox/simplicity/HEAD/images/screenshot.png
--------------------------------------------------------------------------------
/exampleSite/content/tags/_index.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Tags
3 | language: en
4 | slug: /tags/
5 | ---
6 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | assets/node_modules
2 | exampleSite/public
3 | exampleSite/resources
4 | exampleSite/themes
5 |
--------------------------------------------------------------------------------
/layouts/_default/list.html:
--------------------------------------------------------------------------------
1 | {{ define "main" }}
2 | {{ partial "posts_list.html" . }}
3 | {{ end }}
4 |
--------------------------------------------------------------------------------
/layouts/_default/taxonomy.html:
--------------------------------------------------------------------------------
1 | {{ define "main" }}
2 | {{ partial "posts_list.html" . }}
3 | {{ end }}
4 |
--------------------------------------------------------------------------------
/assets/src/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eshlox/simplicity/HEAD/assets/src/images/favicon.ico
--------------------------------------------------------------------------------
/exampleSite/content/posts/_index.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: List of posts
3 | language: en
4 | slug: /posts/
5 | ---
6 |
--------------------------------------------------------------------------------
/exampleSite/content/categories/_index.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Categories
3 | language: en
4 | slug: /categories/
5 | ---
6 |
--------------------------------------------------------------------------------
/exampleSite/content/media/video.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eshlox/simplicity/HEAD/exampleSite/content/media/video.mp4
--------------------------------------------------------------------------------
/exampleSite/content/media/image-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eshlox/simplicity/HEAD/exampleSite/content/media/image-1.jpg
--------------------------------------------------------------------------------
/assets/src/images/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eshlox/simplicity/HEAD/assets/src/images/apple-touch-icon.png
--------------------------------------------------------------------------------
/archetypes/page.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "{{ replace .TranslationBaseName "-" " " | title }}"
3 | language: en
4 | slug:
5 | draft: true
6 | ---
7 |
--------------------------------------------------------------------------------
/layouts/page/single.html:
--------------------------------------------------------------------------------
1 | {{ define "main" }}
2 |
127 | {{ .Get "caption" }} 128 | {{ with .Get "attrlink"}} {{ end }} 129 | {{ .Get "attr" }} 130 | {{ if .Get "attrlink"}} {{ end }} 131 |
{{ end }} 132 |