├── .github └── stale.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README-zh.md ├── README.md ├── archetypes └── default.md ├── assets ├── js │ ├── even.js │ └── main.js └── sass │ ├── _base.scss │ ├── _common │ ├── _animation.scss │ ├── _normalize.scss │ └── _utils.scss │ ├── _custom │ └── _custom.scss │ ├── _iconfont.scss │ ├── _partial │ ├── _404.scss │ ├── _archive.scss │ ├── _back-to-top.scss │ ├── _footer.scss │ ├── _footer │ │ ├── _copyright.scss │ │ └── _social.scss │ ├── _header.scss │ ├── _header │ │ ├── _logo.scss │ │ └── _menu.scss │ ├── _language-selector.scss │ ├── _mobile.scss │ ├── _pagination.scss │ ├── _post.scss │ ├── _post │ │ ├── _admonition.scss │ │ ├── _code.scss │ │ ├── _content.scss │ │ ├── _copyright.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _outdated.scss │ │ ├── _reward.scss │ │ └── _toc.scss │ ├── _slideout.scss │ └── _terms.scss │ ├── _variables.scss │ └── main.scss ├── exampleSite ├── config.toml └── content │ ├── about.md │ └── post │ ├── chinese-preview.md │ ├── english-preview.md │ ├── even-preview.md │ ├── hidden-post.md │ ├── japanese-preview.md │ ├── js-flowchart-diagrams.md │ ├── js-sequence-diagrams.md │ ├── shortcodes.md │ └── syntax-highlighting.md ├── i18n ├── de.yaml ├── en.yaml ├── es.yaml ├── fr.yaml ├── ja.yaml ├── oc.yaml ├── ru.yaml ├── tr.yaml ├── zh-CN.yaml └── zh-TW.yaml ├── images ├── screenshot.png ├── showcase.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── section.html │ ├── single.html │ ├── single.md │ ├── taxonomy.html │ └── terms.html ├── index.html ├── partials │ ├── comments.html │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── header │ │ └── language-selector.html │ ├── post │ │ ├── copyright.html │ │ ├── outdated-info-warning.html │ │ ├── reward.html │ │ └── toc.html │ ├── scripts.html │ └── slideout.html ├── post │ ├── single.html │ └── summary.html ├── robots.txt ├── shortcodes │ ├── admonition.html │ ├── bilibili.html │ ├── center.html │ ├── left.html │ ├── music.html │ └── right.html └── sitemap.xml ├── netlify.toml ├── resources └── _gen │ └── assets │ └── scss │ └── sass │ ├── main.scss_48b060fe05b0a273d182ef83c0605941.content │ └── main.scss_48b060fe05b0a273d182ef83c0605941.json ├── static ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ ├── chancery │ │ ├── apple-chancery-webfont.eot │ │ ├── apple-chancery-webfont.svg │ │ ├── apple-chancery-webfont.ttf │ │ ├── apple-chancery-webfont.woff │ │ └── apple-chancery-webfont.woff2 │ └── iconfont │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff ├── img │ ├── reward │ │ ├── alipay.png │ │ └── wechat.png │ └── spinner.svg ├── lib │ ├── fancybox │ │ ├── jquery.fancybox-3.1.20.min.css │ │ └── jquery.fancybox-3.1.20.min.js │ ├── flowchartDiagrams │ │ ├── flowchart-1.8.0.min.js │ │ └── raphael-2.2.7.min.js │ ├── highlight │ │ └── highlight.pack.js │ ├── jquery │ │ └── jquery-3.2.1.min.js │ ├── js-sequence-diagrams │ │ ├── danielbd.woff2 │ │ ├── sequence-diagram-2.0.1.min.css │ │ ├── sequence-diagram-2.0.1.min.js │ │ ├── snap.svg-0.5.1.min.js │ │ ├── underscore-1.8.3.min.js │ │ └── webfontloader-1.6.28.js │ ├── slideout │ │ └── slideout-1.0.1.min.js │ └── timeago │ │ ├── timeago-3.0.2.min.js │ │ └── timeago.locales-3.0.2.min.js ├── manifest.json ├── mstile-150x150.png ├── safari-pinned-tab.svg └── sitemap.xsl └── theme.toml /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .idea/ 3 | *.iml 4 | exampleSite/resources/ 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/Makefile -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /assets/js/even.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/js/even.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_base.scss -------------------------------------------------------------------------------- /assets/sass/_common/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_common/_animation.scss -------------------------------------------------------------------------------- /assets/sass/_common/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_common/_normalize.scss -------------------------------------------------------------------------------- /assets/sass/_common/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_common/_utils.scss -------------------------------------------------------------------------------- /assets/sass/_custom/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_custom/_custom.scss -------------------------------------------------------------------------------- /assets/sass/_iconfont.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_iconfont.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_404.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_404.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_archive.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_back-to-top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_back-to-top.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_footer.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_footer/_copyright.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_footer/_copyright.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_footer/_social.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_footer/_social.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_header.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_header/_logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_header/_logo.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_header/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_header/_menu.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_language-selector.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_language-selector.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_mobile.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_pagination.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_post.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_post.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_post/_admonition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_post/_admonition.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_post/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_post/_code.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_post/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_post/_content.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_post/_copyright.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_post/_copyright.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_post/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_post/_footer.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_post/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_post/_header.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_post/_outdated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_post/_outdated.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_post/_reward.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_post/_reward.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_post/_toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_post/_toc.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_slideout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_slideout.scss -------------------------------------------------------------------------------- /assets/sass/_partial/_terms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_partial/_terms.scss -------------------------------------------------------------------------------- /assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/_variables.scss -------------------------------------------------------------------------------- /assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/assets/sass/main.scss -------------------------------------------------------------------------------- /exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/exampleSite/config.toml -------------------------------------------------------------------------------- /exampleSite/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/exampleSite/content/about.md -------------------------------------------------------------------------------- /exampleSite/content/post/chinese-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/exampleSite/content/post/chinese-preview.md -------------------------------------------------------------------------------- /exampleSite/content/post/english-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/exampleSite/content/post/english-preview.md -------------------------------------------------------------------------------- /exampleSite/content/post/even-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/exampleSite/content/post/even-preview.md -------------------------------------------------------------------------------- /exampleSite/content/post/hidden-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/exampleSite/content/post/hidden-post.md -------------------------------------------------------------------------------- /exampleSite/content/post/japanese-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/exampleSite/content/post/japanese-preview.md -------------------------------------------------------------------------------- /exampleSite/content/post/js-flowchart-diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/exampleSite/content/post/js-flowchart-diagrams.md -------------------------------------------------------------------------------- /exampleSite/content/post/js-sequence-diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/exampleSite/content/post/js-sequence-diagrams.md -------------------------------------------------------------------------------- /exampleSite/content/post/shortcodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/exampleSite/content/post/shortcodes.md -------------------------------------------------------------------------------- /exampleSite/content/post/syntax-highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/exampleSite/content/post/syntax-highlighting.md -------------------------------------------------------------------------------- /i18n/de.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/i18n/de.yaml -------------------------------------------------------------------------------- /i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/i18n/en.yaml -------------------------------------------------------------------------------- /i18n/es.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/i18n/es.yaml -------------------------------------------------------------------------------- /i18n/fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/i18n/fr.yaml -------------------------------------------------------------------------------- /i18n/ja.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/i18n/ja.yaml -------------------------------------------------------------------------------- /i18n/oc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/i18n/oc.yaml -------------------------------------------------------------------------------- /i18n/ru.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/i18n/ru.yaml -------------------------------------------------------------------------------- /i18n/tr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/i18n/tr.yaml -------------------------------------------------------------------------------- /i18n/zh-CN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/i18n/zh-CN.yaml -------------------------------------------------------------------------------- /i18n/zh-TW.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/i18n/zh-TW.yaml -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/images/showcase.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/_default/section.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/single.md: -------------------------------------------------------------------------------- 1 | {{ .RawContent }} -------------------------------------------------------------------------------- /layouts/_default/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/_default/taxonomy.html -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/_default/terms.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/partials/comments.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/header/language-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/partials/header/language-selector.html -------------------------------------------------------------------------------- /layouts/partials/post/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/partials/post/copyright.html -------------------------------------------------------------------------------- /layouts/partials/post/outdated-info-warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/partials/post/outdated-info-warning.html -------------------------------------------------------------------------------- /layouts/partials/post/reward.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/partials/post/reward.html -------------------------------------------------------------------------------- /layouts/partials/post/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/partials/post/toc.html -------------------------------------------------------------------------------- /layouts/partials/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/partials/scripts.html -------------------------------------------------------------------------------- /layouts/partials/slideout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/partials/slideout.html -------------------------------------------------------------------------------- /layouts/post/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/post/single.html -------------------------------------------------------------------------------- /layouts/post/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/post/summary.html -------------------------------------------------------------------------------- /layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/robots.txt -------------------------------------------------------------------------------- /layouts/shortcodes/admonition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/shortcodes/admonition.html -------------------------------------------------------------------------------- /layouts/shortcodes/bilibili.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/shortcodes/bilibili.html -------------------------------------------------------------------------------- /layouts/shortcodes/center.html: -------------------------------------------------------------------------------- 1 |
2 | {{ .Inner }} 3 |
-------------------------------------------------------------------------------- /layouts/shortcodes/left.html: -------------------------------------------------------------------------------- 1 |
2 | {{ .Inner }} 3 |
-------------------------------------------------------------------------------- /layouts/shortcodes/music.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/shortcodes/music.html -------------------------------------------------------------------------------- /layouts/shortcodes/right.html: -------------------------------------------------------------------------------- 1 |
2 | {{ .Inner }} 3 |
-------------------------------------------------------------------------------- /layouts/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/layouts/sitemap.xml -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/netlify.toml -------------------------------------------------------------------------------- /resources/_gen/assets/scss/sass/main.scss_48b060fe05b0a273d182ef83c0605941.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/resources/_gen/assets/scss/sass/main.scss_48b060fe05b0a273d182ef83c0605941.content -------------------------------------------------------------------------------- /resources/_gen/assets/scss/sass/main.scss_48b060fe05b0a273d182ef83c0605941.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/resources/_gen/assets/scss/sass/main.scss_48b060fe05b0a273d182ef83c0605941.json -------------------------------------------------------------------------------- /static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/browserconfig.xml -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/fonts/chancery/apple-chancery-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/fonts/chancery/apple-chancery-webfont.eot -------------------------------------------------------------------------------- /static/fonts/chancery/apple-chancery-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/fonts/chancery/apple-chancery-webfont.svg -------------------------------------------------------------------------------- /static/fonts/chancery/apple-chancery-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/fonts/chancery/apple-chancery-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/chancery/apple-chancery-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/fonts/chancery/apple-chancery-webfont.woff -------------------------------------------------------------------------------- /static/fonts/chancery/apple-chancery-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/fonts/chancery/apple-chancery-webfont.woff2 -------------------------------------------------------------------------------- /static/fonts/iconfont/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/fonts/iconfont/iconfont.eot -------------------------------------------------------------------------------- /static/fonts/iconfont/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/fonts/iconfont/iconfont.svg -------------------------------------------------------------------------------- /static/fonts/iconfont/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/fonts/iconfont/iconfont.ttf -------------------------------------------------------------------------------- /static/fonts/iconfont/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/fonts/iconfont/iconfont.woff -------------------------------------------------------------------------------- /static/img/reward/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/img/reward/alipay.png -------------------------------------------------------------------------------- /static/img/reward/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/img/reward/wechat.png -------------------------------------------------------------------------------- /static/img/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/img/spinner.svg -------------------------------------------------------------------------------- /static/lib/fancybox/jquery.fancybox-3.1.20.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/fancybox/jquery.fancybox-3.1.20.min.css -------------------------------------------------------------------------------- /static/lib/fancybox/jquery.fancybox-3.1.20.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/fancybox/jquery.fancybox-3.1.20.min.js -------------------------------------------------------------------------------- /static/lib/flowchartDiagrams/flowchart-1.8.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/flowchartDiagrams/flowchart-1.8.0.min.js -------------------------------------------------------------------------------- /static/lib/flowchartDiagrams/raphael-2.2.7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/flowchartDiagrams/raphael-2.2.7.min.js -------------------------------------------------------------------------------- /static/lib/highlight/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/highlight/highlight.pack.js -------------------------------------------------------------------------------- /static/lib/jquery/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/jquery/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /static/lib/js-sequence-diagrams/danielbd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/js-sequence-diagrams/danielbd.woff2 -------------------------------------------------------------------------------- /static/lib/js-sequence-diagrams/sequence-diagram-2.0.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/js-sequence-diagrams/sequence-diagram-2.0.1.min.css -------------------------------------------------------------------------------- /static/lib/js-sequence-diagrams/sequence-diagram-2.0.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/js-sequence-diagrams/sequence-diagram-2.0.1.min.js -------------------------------------------------------------------------------- /static/lib/js-sequence-diagrams/snap.svg-0.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/js-sequence-diagrams/snap.svg-0.5.1.min.js -------------------------------------------------------------------------------- /static/lib/js-sequence-diagrams/underscore-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/js-sequence-diagrams/underscore-1.8.3.min.js -------------------------------------------------------------------------------- /static/lib/js-sequence-diagrams/webfontloader-1.6.28.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/js-sequence-diagrams/webfontloader-1.6.28.js -------------------------------------------------------------------------------- /static/lib/slideout/slideout-1.0.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/slideout/slideout-1.0.1.min.js -------------------------------------------------------------------------------- /static/lib/timeago/timeago-3.0.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/timeago/timeago-3.0.2.min.js -------------------------------------------------------------------------------- /static/lib/timeago/timeago.locales-3.0.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/lib/timeago/timeago.locales-3.0.2.min.js -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/manifest.json -------------------------------------------------------------------------------- /static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/mstile-150x150.png -------------------------------------------------------------------------------- /static/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/safari-pinned-tab.svg -------------------------------------------------------------------------------- /static/sitemap.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/static/sitemap.xsl -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olOwOlo/hugo-theme-even/HEAD/theme.toml --------------------------------------------------------------------------------