├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── archetypes └── default.md ├── assets ├── css │ ├── atom.scss │ ├── custom.scss │ ├── main.scss │ ├── md.scss │ ├── pre.scss │ ├── syntax.scss │ └── theme.scss ├── icon │ ├── dark.svg │ └── light.svg └── js │ ├── main.js │ ├── min │ ├── fuse.basic.min.js │ └── parallax.min.js │ ├── search.js │ ├── selectable.js │ └── theme.js ├── config.toml ├── data └── svg.toml ├── exampleSite ├── config.yaml └── content │ ├── pages │ ├── about │ │ ├── Written-By-Human-Not-By-AI-Badge-white.svg │ │ ├── index.md │ │ ├── me.webp │ │ ├── moeicp.png │ │ └── wormhole_3.gif │ ├── friends │ │ └── index.md │ └── gallery │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ └── index.md │ └── posts │ ├── markdown-syntax.md │ ├── markdown-syntax.zh-cn.md │ ├── math-typesetting.md │ ├── mermaid-diagrams.md │ ├── search.en.md │ ├── search.md │ └── search.zh-cn.md ├── i18n ├── en.yaml ├── id.yaml ├── ru.yaml ├── ua.yaml ├── zh-cn.yaml ├── zh-hk.yaml └── zh-tw.yaml ├── images ├── screenshot-dark.png ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ └── render-image.html │ ├── archives.html │ ├── baseof.html │ ├── gallery.html │ ├── goods.html │ ├── links.html │ ├── list.html │ ├── page.html │ ├── search.html │ ├── single.html │ └── terms.html ├── index.html ├── index.json ├── index.xml ├── partials │ ├── comment.html │ ├── diagram.html │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── item.html │ ├── math.html │ ├── paginator.html │ ├── plugin.html │ └── viewimage.html └── shortcodes │ └── fullscreen.html ├── static ├── favicon.ico ├── img │ └── code-header.svg ├── lib │ ├── artalk │ │ ├── Artalk.css │ │ └── Artalk.js │ ├── twikoo │ │ └── twikoo.all.min.js │ ├── view-image │ │ ├── view-image.js │ │ └── view-image.min.js │ └── waline │ │ ├── waline.css │ │ └── waline.js └── texture.png ├── testdata └── rss.xml └── theme.toml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | public 3 | resources 4 | .hugo_build.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /assets/css/atom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/css/atom.scss -------------------------------------------------------------------------------- /assets/css/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/css/custom.scss -------------------------------------------------------------------------------- /assets/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/css/main.scss -------------------------------------------------------------------------------- /assets/css/md.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/css/md.scss -------------------------------------------------------------------------------- /assets/css/pre.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/css/pre.scss -------------------------------------------------------------------------------- /assets/css/syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/css/syntax.scss -------------------------------------------------------------------------------- /assets/css/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/css/theme.scss -------------------------------------------------------------------------------- /assets/icon/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/icon/dark.svg -------------------------------------------------------------------------------- /assets/icon/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/icon/light.svg -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/js/min/fuse.basic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/js/min/fuse.basic.min.js -------------------------------------------------------------------------------- /assets/js/min/parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/js/min/parallax.min.js -------------------------------------------------------------------------------- /assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/js/search.js -------------------------------------------------------------------------------- /assets/js/selectable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/js/selectable.js -------------------------------------------------------------------------------- /assets/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/assets/js/theme.js -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/config.toml -------------------------------------------------------------------------------- /data/svg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/data/svg.toml -------------------------------------------------------------------------------- /exampleSite/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/config.yaml -------------------------------------------------------------------------------- /exampleSite/content/pages/about/Written-By-Human-Not-By-AI-Badge-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/about/Written-By-Human-Not-By-AI-Badge-white.svg -------------------------------------------------------------------------------- /exampleSite/content/pages/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/about/index.md -------------------------------------------------------------------------------- /exampleSite/content/pages/about/me.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/about/me.webp -------------------------------------------------------------------------------- /exampleSite/content/pages/about/moeicp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/about/moeicp.png -------------------------------------------------------------------------------- /exampleSite/content/pages/about/wormhole_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/about/wormhole_3.gif -------------------------------------------------------------------------------- /exampleSite/content/pages/friends/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/friends/index.md -------------------------------------------------------------------------------- /exampleSite/content/pages/gallery/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/gallery/1.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/gallery/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/gallery/2.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/gallery/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/gallery/3.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/gallery/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/gallery/4.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/gallery/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/gallery/5.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/gallery/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/gallery/6.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/gallery/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/gallery/7.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/gallery/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/pages/gallery/index.md -------------------------------------------------------------------------------- /exampleSite/content/posts/markdown-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/posts/markdown-syntax.md -------------------------------------------------------------------------------- /exampleSite/content/posts/markdown-syntax.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/posts/markdown-syntax.zh-cn.md -------------------------------------------------------------------------------- /exampleSite/content/posts/math-typesetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/posts/math-typesetting.md -------------------------------------------------------------------------------- /exampleSite/content/posts/mermaid-diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/posts/mermaid-diagrams.md -------------------------------------------------------------------------------- /exampleSite/content/posts/search.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/posts/search.en.md -------------------------------------------------------------------------------- /exampleSite/content/posts/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/exampleSite/content/posts/search.md -------------------------------------------------------------------------------- /exampleSite/content/posts/search.zh-cn.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 搜索 3 | layout: search 4 | --- -------------------------------------------------------------------------------- /i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/i18n/en.yaml -------------------------------------------------------------------------------- /i18n/id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/i18n/id.yaml -------------------------------------------------------------------------------- /i18n/ru.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/i18n/ru.yaml -------------------------------------------------------------------------------- /i18n/ua.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/i18n/ua.yaml -------------------------------------------------------------------------------- /i18n/zh-cn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/i18n/zh-cn.yaml -------------------------------------------------------------------------------- /i18n/zh-hk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/i18n/zh-hk.yaml -------------------------------------------------------------------------------- /i18n/zh-tw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/i18n/zh-tw.yaml -------------------------------------------------------------------------------- /images/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/images/screenshot-dark.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/_markup/render-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/_default/_markup/render-image.html -------------------------------------------------------------------------------- /layouts/_default/archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/_default/archives.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/_default/gallery.html -------------------------------------------------------------------------------- /layouts/_default/goods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/_default/goods.html -------------------------------------------------------------------------------- /layouts/_default/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/_default/links.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/_default/page.html -------------------------------------------------------------------------------- /layouts/_default/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/_default/search.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/_default/terms.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/index.json -------------------------------------------------------------------------------- /layouts/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/index.xml -------------------------------------------------------------------------------- /layouts/partials/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/partials/comment.html -------------------------------------------------------------------------------- /layouts/partials/diagram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/partials/diagram.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/partials/item.html -------------------------------------------------------------------------------- /layouts/partials/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/partials/math.html -------------------------------------------------------------------------------- /layouts/partials/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/partials/paginator.html -------------------------------------------------------------------------------- /layouts/partials/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/partials/plugin.html -------------------------------------------------------------------------------- /layouts/partials/viewimage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/partials/viewimage.html -------------------------------------------------------------------------------- /layouts/shortcodes/fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/layouts/shortcodes/fullscreen.html -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/img/code-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/static/img/code-header.svg -------------------------------------------------------------------------------- /static/lib/artalk/Artalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/static/lib/artalk/Artalk.css -------------------------------------------------------------------------------- /static/lib/artalk/Artalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/static/lib/artalk/Artalk.js -------------------------------------------------------------------------------- /static/lib/twikoo/twikoo.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/static/lib/twikoo/twikoo.all.min.js -------------------------------------------------------------------------------- /static/lib/view-image/view-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/static/lib/view-image/view-image.js -------------------------------------------------------------------------------- /static/lib/view-image/view-image.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/static/lib/view-image/view-image.min.js -------------------------------------------------------------------------------- /static/lib/waline/waline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/static/lib/waline/waline.css -------------------------------------------------------------------------------- /static/lib/waline/waline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/static/lib/waline/waline.js -------------------------------------------------------------------------------- /static/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/static/texture.png -------------------------------------------------------------------------------- /testdata/rss.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lin-snow/hugo-theme-xlog/HEAD/theme.toml --------------------------------------------------------------------------------