4 | {{ .Title }} 5 |
6 | 9 |11 | {{ .Summary }} 12 |
13 | {{ if site.Params.readmore }} 14 | {{ if .Truncated }} 15 | 18 | {{ end }} 19 | {{ end }} 20 |├── static ├── js │ └── ed.js ├── favicon.ico ├── icon-192.png ├── icon-512.png ├── apple-touch-icon.png ├── img │ └── external-link.svg └── icon.svg ├── layouts ├── shortcodes │ ├── raw-html.html │ ├── year.html │ ├── mini-toc.html │ ├── indent.html │ ├── abbr.html │ ├── toc.html │ ├── footnote.html │ ├── footnotesList.html │ ├── citation.html │ ├── img.html │ ├── link.html │ ├── form-contact.html │ └── form-search.html ├── partials │ ├── hypothesis.html │ ├── templates │ │ ├── schema_json.html │ │ ├── twitter_cards.html │ │ └── opengraph.html │ ├── post-class.html │ ├── post-toc-summary.html │ ├── title.html │ ├── custom-head.html │ ├── custom-scripts.html │ ├── head │ │ ├── author.html │ │ └── analytics.html │ ├── keywords.html │ ├── post-tags.html │ ├── page │ │ └── single.html │ ├── schema.org │ │ ├── website.html │ │ └── article.html │ ├── footer.html │ ├── scripts.html │ ├── post-meta │ │ └── date.html │ ├── description.html │ ├── mini-toc.html │ ├── site-last-mod.html │ ├── styles.html │ ├── sidebar-toc.html │ ├── sidebar.html │ ├── pagination.html │ ├── head.html │ └── comments.html ├── robots.txt ├── 404.html ├── page │ └── single.html ├── index.html └── _default │ ├── teaser.html │ ├── list.html │ ├── term.html │ ├── terms.html │ ├── single.html │ ├── home.manifest.webmanifest │ ├── home.humanstxt.txt │ ├── index.json │ ├── baseof.html │ ├── list.jsonfeed.json │ └── list.atom.xml ├── assets ├── js │ ├── .eslintrc.yml │ ├── giscus.js │ ├── ed.js │ ├── gtm.js │ └── search.js ├── img │ └── open-graph-logo.png ├── sass │ ├── style.scss │ ├── _syntax.scss │ ├── themes.scss │ ├── _form-elements.scss │ ├── _customize.scss │ ├── _mixins.scss │ └── _ed.scss └── css │ └── extended │ └── syntax.css ├── package.hugo.json ├── google68c3edfdb3673ddb.html ├── images ├── tn.png └── screenshot.png ├── exampleSite ├── content │ ├── tags │ │ └── _index.md │ ├── search.md │ ├── documentation │ │ └── screenshot-home.png │ ├── thanks.md │ ├── poems │ │ ├── mypoem.md │ │ ├── dreams.md │ │ ├── delayed.md │ │ ├── o-captain.md │ │ └── a-julia.md │ ├── _index.md │ ├── dramas │ │ └── raisin.md │ ├── contact.md │ ├── about.md │ └── credits.md ├── go.sum ├── go.mod └── hugo.toml ├── resources └── _gen │ ├── assets │ └── sass │ │ └── style.scss_7bbaf99eabb468e10b793066c2709a48.json │ └── images │ └── img │ └── open-graph-logo_hu1096175607311285209.png ├── go.mod ├── archetypes └── default.md ├── go.sum ├── SECURITY.md ├── config.yaml ├── tests ├── humans.spec.js ├── main-page.spec.js ├── feed-rss.spec.js └── feed-atom.spec.js ├── LICENSE ├── theme.toml ├── i18n ├── en.toml ├── ru.toml └── de.toml ├── package.json ├── README.md ├── playwright.config.js ├── CONTRIBUTING.md └── CHANGELOG.md /static/js/ed.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/shortcodes/raw-html.html: -------------------------------------------------------------------------------- 1 | {{ .Inner }} 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/year.html: -------------------------------------------------------------------------------- 1 | {{ now.Format "2006" }} 2 | -------------------------------------------------------------------------------- /assets/js/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | parserOptions: 2 | sourceType: module 3 | -------------------------------------------------------------------------------- /layouts/shortcodes/mini-toc.html: -------------------------------------------------------------------------------- 1 | {{- partial "mini-toc" . -}} 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/indent.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /package.hugo.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ed", 3 | "version": "0.8.0" 4 | } 5 | -------------------------------------------------------------------------------- /google68c3edfdb3673ddb.html: -------------------------------------------------------------------------------- 1 | google-site-verification: google68c3edfdb3673ddb.html -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyklay/gohugo-theme-ed/HEAD/images/tn.png -------------------------------------------------------------------------------- /exampleSite/content/tags/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tag cloud 3 | annotations: false 4 | --- 5 | -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyklay/gohugo-theme-ed/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyklay/gohugo-theme-ed/HEAD/static/icon-192.png -------------------------------------------------------------------------------- /static/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyklay/gohugo-theme-ed/HEAD/static/icon-512.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyklay/gohugo-theme-ed/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /exampleSite/content/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Search 3 | annotations: false 4 | --- 5 | 6 | {{< form-search >}} 7 | -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyklay/gohugo-theme-ed/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/img/open-graph-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyklay/gohugo-theme-ed/HEAD/assets/img/open-graph-logo.png -------------------------------------------------------------------------------- /layouts/shortcodes/abbr.html: -------------------------------------------------------------------------------- 1 | 2 | {{- .Get "text" -}} 3 | {{- safeHTML "" -}} 4 | -------------------------------------------------------------------------------- /resources/_gen/assets/sass/style.scss_7bbaf99eabb468e10b793066c2709a48.json: -------------------------------------------------------------------------------- 1 | {"Target":"/sass/style.css","MediaType":"text/css","Data":{}} -------------------------------------------------------------------------------- /layouts/shortcodes/toc.html: -------------------------------------------------------------------------------- 1 |
{{ .Get 1 }} ↩︎
3 |{{ i18n "404_title" }}
7 |{{ i18n "404_description" }}
10 | 11 |11 | {{ .Summary }} 12 |
13 | {{ if site.Params.readmore }} 14 | {{ if .Truncated }} 15 | 18 | {{ end }} 19 | {{ end }} 20 |
10 |
11 |
{{ i18n "search_help" }}
3 | 23 |