├── go.mod ├── layouts ├── shortcodes │ ├── rawhtml.html │ ├── inTextImg.html │ ├── youtube.html │ ├── collapse.html │ ├── ltr.html │ ├── rtl.html │ └── figure.html ├── 404.html ├── _default │ ├── _markup │ │ └── render-image.html │ ├── index.json │ ├── terms.html │ ├── baseof.html │ ├── search.html │ ├── single.html │ ├── archives.html │ ├── rss.xml │ └── list.html ├── partials │ ├── comments.html │ ├── extend_footer.html │ ├── anchored_headings.html │ ├── post_lastmod.html │ ├── extend_head.html │ ├── social_icons.html │ ├── author.html │ ├── home_info.html │ ├── post_nav_links.html │ ├── post_canonical.html │ ├── edit_post.html │ ├── translation_list.html │ ├── breadcrumbs.html │ ├── post_meta.html │ ├── footer.html │ ├── script.html │ ├── templates │ │ ├── twitter_cards.html │ │ ├── opengraph.html │ │ └── schema_json.html │ ├── cover.html │ ├── index_profile.html │ ├── toc.html │ ├── head.html │ ├── header.html │ └── share_icons.html └── robots.txt ├── images ├── tn.png └── screenshot.png ├── .github ├── assets │ └── web-capture.jpeg ├── ISSUE_TEMPLATE │ ├── new-blank-issue.md │ ├── config.yml │ └── bug_report.md ├── stale.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── gh-pages.yml ├── assets ├── css │ ├── includes │ │ ├── noscript.css │ │ └── scroll-bar.css │ ├── core │ │ ├── license.css │ │ ├── theme-vars.css │ │ ├── zmedia.css │ │ └── reset.css │ ├── common │ │ ├── 404.css │ │ ├── terms.css │ │ ├── archive.css │ │ ├── profile-mode.css │ │ ├── search.css │ │ ├── footer.css │ │ ├── main.css │ │ ├── post-entry.css │ │ ├── header.css │ │ ├── chroma.css │ │ └── post-single.css │ └── extended │ │ ├── blank.css │ │ └── youtube.css └── js │ ├── license.js │ ├── theme.js │ ├── papermod.js │ ├── fastsearch.js │ └── fuse.basic.min.js ├── Makefile ├── i18n ├── bg.yaml ├── hu.yaml ├── hi.yaml ├── ca.yaml ├── uz.yaml ├── mn.yaml ├── eo.yaml ├── uk.yaml ├── ku.yaml ├── ckb.yaml ├── fa.yaml ├── da.yaml ├── sv.yaml ├── ms.yaml ├── ar.yaml ├── ja.yaml ├── zh.yaml ├── ko.yaml ├── he.yaml ├── zh-tw.yaml ├── th.yaml ├── cs.yaml ├── en.yaml ├── id.yaml ├── ro.yaml ├── tr.yaml ├── fr.yaml ├── no.yaml ├── sw.yaml ├── vi.yaml ├── it.yaml ├── nl.yaml ├── pl.yaml ├── bn.yaml ├── de.yaml ├── el.yaml ├── es.yaml ├── pt.yaml ├── hr.yaml ├── ru.yaml └── be.yaml ├── LICENSE ├── theme.toml └── README.md /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/Wonderfall/hugo-WonderMod 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /layouts/shortcodes/rawhtml.html: -------------------------------------------------------------------------------- 1 | 2 | {{- .Inner -}} 3 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wonderfall/hugo-WonderMod/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wonderfall/hugo-WonderMod/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | {{- define "main" }} 2 |
{{ .Get "summary" | markdownify }}
7 | {{ .Inner | markdownify }}
8 |
22 | {{- .Get "caption" | markdownify -}} 23 | {{- with .Get "attrlink" }} 24 | 25 | {{- end -}} 26 | {{- .Get "attr" | markdownify -}} 27 | {{- if .Get "attrlink" }}{{ end }}
28 | {{- end }} 29 |
4 |
5 |
{{ . | markdownify }}
{{- end }} 40 | {{- end }} 41 |{{ .Summary | plainify | htmlUnescape }}{{ if .Truncated }}...{{ end }}
85 |