{{ .Title | markdownify }}
6 | 7 | {{- if .Params.toc }} 8 |9 | 13 |
14 | {{- end }} 15 | 16 | {{ with .Params.Cover }} 17 |
26 | 27 |
30 | 31 | {{- range . -}} 32 | {{.}} 33 | {{- end }} 34 |
35 | {{- end }} 36 | 37 | 38 |├── assets
├── js
│ ├── main.js
│ ├── menu.js
│ └── theme.js
└── scss
│ ├── _mixins.scss
│ ├── main.scss
│ ├── _variables.scss
│ ├── _sharing-buttons.scss
│ ├── _logo.scss
│ ├── _header.scss
│ ├── _footer.scss
│ ├── _menu.scss
│ ├── _list.scss
│ ├── _fonts.scss
│ ├── _buttons.scss
│ ├── _prism.scss
│ ├── _single.scss
│ ├── style.scss
│ ├── _main.scss
│ └── _normalize.scss
├── images
├── tn.png
└── screenshot.png
├── static
└── fonts
│ ├── Inter-UI-Bold.woff
│ ├── Inter-UI-Bold.woff2
│ ├── Inter-UI-Italic.woff
│ ├── Inter-UI-Medium.woff
│ ├── Inter-UI-Italic.woff2
│ ├── Inter-UI-Medium.woff2
│ ├── Inter-UI-Regular.woff
│ ├── Inter-UI-Regular.woff2
│ ├── Inter-UI-BoldItalic.woff
│ ├── Inter-UI-BoldItalic.woff2
│ ├── Inter-UI-MediumItalic.woff
│ └── Inter-UI-MediumItalic.woff2
├── data
└── langFlags.yaml
├── exampleSite
├── archetypes
│ └── default.md
├── static
│ ├── css
│ │ └── custom.css
│ ├── site.webmanifest
│ └── bootstrap.min.css
├── resources
│ └── _gen
│ │ └── assets
│ │ └── scss
│ │ └── scss
│ │ ├── main.scss_de1a7f5f1c8c46959803c429bb697ff0.json
│ │ └── main.scss_de1a7f5f1c8c46959803c429bb697ff0.content
├── content
│ └── timeline
│ │ ├── Lorem_Ipsum.md
│ │ ├── Amet_Mauris.md
│ │ ├── Lorem_Ipsum_Dolor.md
│ │ └── Sapien_faucibus.md
└── config.toml
├── archetypes
├── default.md
└── posts.md
├── layouts
├── partials
│ ├── social-icons.html
│ ├── menu.html
│ ├── theme-icon.html
│ ├── favicons.html
│ ├── javascript.html
│ ├── header.html
│ ├── pagination.html
│ ├── logo.html
│ ├── footer.html
│ ├── head.html
│ ├── sharing-buttons.html
│ └── svg.html
├── shortcodes
│ └── image.html
├── index.html
├── _default
│ ├── baseof.html
│ ├── list.html
│ └── single.html
├── timeline
│ ├── list.html
│ ├── rss.xml
│ └── single.html
└── 404.html
├── i18n
├── hi.toml
├── tr.toml
├── en.toml
├── it.toml
├── lmo.toml
├── pt-br.toml
├── de.toml
├── fr.toml
├── es.toml
└── ml.toml
├── theme.toml
├── README.md
└── LICENSE
/assets/js/main.js:
--------------------------------------------------------------------------------
1 | // Some code could be here ...
2 |
--------------------------------------------------------------------------------
/assets/scss/_mixins.scss:
--------------------------------------------------------------------------------
1 | @mixin dimmed {
2 | opacity: .6;
3 | }
4 |
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/images/tn.png
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/images/screenshot.png
--------------------------------------------------------------------------------
/static/fonts/Inter-UI-Bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/static/fonts/Inter-UI-Bold.woff
--------------------------------------------------------------------------------
/static/fonts/Inter-UI-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/static/fonts/Inter-UI-Bold.woff2
--------------------------------------------------------------------------------
/static/fonts/Inter-UI-Italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/static/fonts/Inter-UI-Italic.woff
--------------------------------------------------------------------------------
/static/fonts/Inter-UI-Medium.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/static/fonts/Inter-UI-Medium.woff
--------------------------------------------------------------------------------
/static/fonts/Inter-UI-Italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/static/fonts/Inter-UI-Italic.woff2
--------------------------------------------------------------------------------
/static/fonts/Inter-UI-Medium.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/static/fonts/Inter-UI-Medium.woff2
--------------------------------------------------------------------------------
/static/fonts/Inter-UI-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/static/fonts/Inter-UI-Regular.woff
--------------------------------------------------------------------------------
/static/fonts/Inter-UI-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/static/fonts/Inter-UI-Regular.woff2
--------------------------------------------------------------------------------
/static/fonts/Inter-UI-BoldItalic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/static/fonts/Inter-UI-BoldItalic.woff
--------------------------------------------------------------------------------
/static/fonts/Inter-UI-BoldItalic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/static/fonts/Inter-UI-BoldItalic.woff2
--------------------------------------------------------------------------------
/data/langFlags.yaml:
--------------------------------------------------------------------------------
1 | de: de
2 | en: gb
3 | es: es
4 | fr: fr
5 | hi: in
6 | it: it
7 | nl: nl
8 | pt-br: br
9 | tr: tr
10 | ml: in
11 |
--------------------------------------------------------------------------------
/exampleSite/archetypes/default.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "{{ replace .Name "-" " " | title }}"
3 | date: {{ .Date }}
4 | draft: true
5 | ---
6 |
7 |
--------------------------------------------------------------------------------
/static/fonts/Inter-UI-MediumItalic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/static/fonts/Inter-UI-MediumItalic.woff
--------------------------------------------------------------------------------
/static/fonts/Inter-UI-MediumItalic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/s4n7h0/hugo-theme-timeline/HEAD/static/fonts/Inter-UI-MediumItalic.woff2
--------------------------------------------------------------------------------
/archetypes/default.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "{{ replace .Name "-" " " | title }}"
3 | date: {{ .Date }}
4 | draft: true
5 | comments: false
6 | images:
7 | ---
8 |
9 |
--------------------------------------------------------------------------------
/archetypes/posts.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "{{ replace .Name "-" " " | title }}"
3 | date: {{ .Date }}
4 | draft: true
5 | toc: false
6 | images:
7 | tags:
8 | - untagged
9 | ---
10 |
11 |
--------------------------------------------------------------------------------
/exampleSite/static/css/custom.css:
--------------------------------------------------------------------------------
1 | .framed {
2 | padding: 20px;
3 | border-radius: 10px;
4 | border: 1px solid #dcdcdc;
5 | border: 1px solid var(--border-color);
6 | max-width: 800px;
7 | }
--------------------------------------------------------------------------------
/layouts/partials/social-icons.html:
--------------------------------------------------------------------------------
1 | {{ range . -}}
2 | {{ partial "svg.html" . }}
3 | {{- end -}}
4 |
--------------------------------------------------------------------------------
/exampleSite/resources/_gen/assets/scss/scss/main.scss_de1a7f5f1c8c46959803c429bb697ff0.json:
--------------------------------------------------------------------------------
1 | {"Target":"main.805b1025016494ee5fd67b55b8ecd5e2b7c4a9f0bdda42e300c62b85ddfef68f.css","MediaType":"text/css","Data":{"Integrity":"sha256-gFsQJQFklO5f1ntVuOzV4rfEqfC92kLjAMYrhd3+9o8="}}
--------------------------------------------------------------------------------
/layouts/partials/menu.html:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/exampleSite/static/site.webmanifest:
--------------------------------------------------------------------------------
1 | {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
--------------------------------------------------------------------------------
/layouts/shortcodes/image.html:
--------------------------------------------------------------------------------
1 | {{ if .Get "src" }}
2 |
3 | {{ end }}
4 |
--------------------------------------------------------------------------------
/layouts/partials/theme-icon.html:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/assets/scss/main.scss:
--------------------------------------------------------------------------------
1 | /* Must be loaded before everything else */
2 | @import "normalize";
3 | @import "prism";
4 | /* Main stuff */
5 | @import "variables";
6 | @import "mixins";
7 | @import "fonts";
8 | @import "buttons";
9 | /* Modules */
10 | @import "header";
11 | @import "logo";
12 | @import "menu";
13 | @import "main";
14 | @import "list";
15 | @import "single";
16 | @import "footer";
17 | @import "sharing-buttons";
18 | @import "style";
--------------------------------------------------------------------------------
/layouts/index.html:
--------------------------------------------------------------------------------
1 | {{ define "main" }}
2 |
3 |
23 | {{.Params.Eventname}}
24 | {{.Params.Eventlocation}}
25 |
26 |
30 | 31 | {{- range . -}} 32 | {{.}} 33 | {{- end }} 34 |
35 | {{- end }} 36 | 37 | 38 |4 | 5 |
6 | 14 |6 | 10 | {{ i18n "readingTime" .Page.ReadingTime }} 11 | 12 | {{ if .IsTranslated }} | {{ i18n "postAvailable" }} 13 | {{ range .Translations }} 14 | 15 | {{ end}} 16 | {{ end }} 17 |
18 |48 | 52 | 53 | {{- range . -}} 54 | {{.}} 55 | {{- end }} 56 |
57 | {{- end }} 58 | 59 |60 | 67 | {{ i18n "wordCount" .Page.WordCount }} 68 |
69 | 70 |71 | 77 | {{ if .Site.Params.dateformNumTime }}{{ dateFormat .Site.Params.dateformNumTime .Date.Local }}{{ else }}{{ dateFormat "2006-01-02 15:04 -0700" .Date.Local }}{{ end }} 78 |
79 | 80 |