├── layouts ├── 404.html ├── partials │ ├── footer.html │ ├── head │ │ ├── css.html │ │ └── js.html │ ├── paginator.html │ ├── terms.html │ ├── post-preview.html │ ├── disqus.html │ ├── head.html │ ├── menu.html │ └── header.html └── _default │ ├── baseof.html │ ├── list.html │ ├── term.html │ ├── terms.html │ ├── home.html │ └── single.html ├── assets ├── js │ └── main.js └── css │ ├── normalize.css │ └── index.css ├── static ├── js │ └── main.js ├── favicon.ico ├── background.png └── css │ └── main.css ├── public ├── favicon.ico ├── page │ └── 1 │ │ └── index.html ├── sitemap.xml ├── index.xml ├── tags │ ├── index.xml │ └── index.html ├── categories │ ├── index.xml │ └── index.html └── index.html ├── archetypes └── default.md ├── hugo.toml ├── theme.toml ├── README.md └── LICENSE /layouts/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- 1 | console.log('This site was generated by Hugo.'); 2 | -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- 1 | console.log('This site was generated by Hugo.'); 2 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mngshm/akhbaar/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mngshm/akhbaar/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mngshm/akhbaar/HEAD/static/background.png -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = '{{ replace .File.ContentBaseName "-" " " | title }}' 3 | date = {{ .Date }} 4 | description = "A nice description" 5 | tags = ['life', 'is', 'empty', 'without', 'tags'] 6 | draft = true 7 | thumbnail = "" 8 | +++ 9 | -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- 1 |
10 | 11 | 12 | -------------------------------------------------------------------------------- /public/page/1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |11 | {{ .Description }} 12 |
13 | 20 |{{ .Site.Params.Subtitle | markdownify }}
29 | {{- end -}} 30 |