├── .gitignore ├── LICENSE ├── README-ZH.md ├── README.md ├── archetypes └── default.md ├── assets ├── avatar.png ├── css │ └── style.css ├── donate │ ├── alipayimg.png │ └── wechatpayimg.png ├── favicon.ico └── js │ ├── application.js │ ├── insight.js │ └── plugin.js ├── exampleSite ├── config.yml └── content │ ├── about.md │ ├── homepage │ ├── about.md │ ├── index.md │ └── work.md │ └── posts │ ├── _index.md │ ├── emoji-support.md │ ├── markdown-syntax.md │ ├── math-typesetting.mmark │ ├── placeholder-text.md │ └── rich-content.md ├── i18n ├── en.yaml └── zh.yaml ├── images ├── black.png ├── blue.png ├── green.png ├── grey.png ├── purple.png ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── category.html │ ├── category.terms.html │ ├── list.html │ ├── list.searchindex.json │ ├── rss.xml │ ├── single.html │ ├── sitemap.xml │ ├── tag.html │ └── tag.terms.html ├── index.html ├── partials │ ├── _script │ │ ├── analytics.html │ │ ├── comment.html │ │ ├── fancybox.html │ │ ├── pv.html │ │ └── repository.html │ ├── _widgets │ │ ├── board.html │ │ ├── category.html │ │ ├── recent_posts.html │ │ ├── tag.html │ │ └── tag_cloud.html │ ├── article.html │ ├── card-post.html │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── item-post.html │ ├── math.html │ ├── pagination.html │ ├── post │ │ ├── category.html │ │ ├── comment.html │ │ ├── copyright.html │ │ ├── date.html │ │ ├── donate.html │ │ ├── gallery.html │ │ ├── nav.html │ │ ├── pv.html │ │ ├── tag.html │ │ ├── title.html │ │ └── wc.html │ ├── script.html │ ├── search.html │ ├── sidebar-toc.html │ ├── sidebar.html │ └── social.html ├── robots.txt └── shortcodes │ └── alert.html ├── static ├── avatar.png ├── favicon.ico └── fonts │ ├── README.md │ ├── iconfont.eot │ ├── iconfont.svg │ ├── iconfont.ttf │ └── iconfont.woff └── theme.toml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/LICENSE -------------------------------------------------------------------------------- /README-ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/README-ZH.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/assets/avatar.png -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/donate/alipayimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/assets/donate/alipayimg.png -------------------------------------------------------------------------------- /assets/donate/wechatpayimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/assets/donate/wechatpayimg.png -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/assets/js/application.js -------------------------------------------------------------------------------- /assets/js/insight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/assets/js/insight.js -------------------------------------------------------------------------------- /assets/js/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/assets/js/plugin.js -------------------------------------------------------------------------------- /exampleSite/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/exampleSite/config.yml -------------------------------------------------------------------------------- /exampleSite/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/exampleSite/content/about.md -------------------------------------------------------------------------------- /exampleSite/content/homepage/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/exampleSite/content/homepage/about.md -------------------------------------------------------------------------------- /exampleSite/content/homepage/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | headless : true 3 | --- 4 | -------------------------------------------------------------------------------- /exampleSite/content/homepage/work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/exampleSite/content/homepage/work.md -------------------------------------------------------------------------------- /exampleSite/content/posts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/exampleSite/content/posts/_index.md -------------------------------------------------------------------------------- /exampleSite/content/posts/emoji-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/exampleSite/content/posts/emoji-support.md -------------------------------------------------------------------------------- /exampleSite/content/posts/markdown-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/exampleSite/content/posts/markdown-syntax.md -------------------------------------------------------------------------------- /exampleSite/content/posts/math-typesetting.mmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/exampleSite/content/posts/math-typesetting.mmark -------------------------------------------------------------------------------- /exampleSite/content/posts/placeholder-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/exampleSite/content/posts/placeholder-text.md -------------------------------------------------------------------------------- /exampleSite/content/posts/rich-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/exampleSite/content/posts/rich-content.md -------------------------------------------------------------------------------- /i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/i18n/en.yaml -------------------------------------------------------------------------------- /i18n/zh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/i18n/zh.yaml -------------------------------------------------------------------------------- /images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/images/black.png -------------------------------------------------------------------------------- /images/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/images/blue.png -------------------------------------------------------------------------------- /images/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/images/green.png -------------------------------------------------------------------------------- /images/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/images/grey.png -------------------------------------------------------------------------------- /images/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/images/purple.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/_default/category.html -------------------------------------------------------------------------------- /layouts/_default/category.terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/_default/category.terms.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/list.searchindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/_default/list.searchindex.json -------------------------------------------------------------------------------- /layouts/_default/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/_default/rss.xml -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/_default/sitemap.xml -------------------------------------------------------------------------------- /layouts/_default/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/_default/tag.html -------------------------------------------------------------------------------- /layouts/_default/tag.terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/_default/tag.terms.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/_script/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/_script/analytics.html -------------------------------------------------------------------------------- /layouts/partials/_script/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/_script/comment.html -------------------------------------------------------------------------------- /layouts/partials/_script/fancybox.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/_script/pv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/_script/pv.html -------------------------------------------------------------------------------- /layouts/partials/_script/repository.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/_widgets/board.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/_widgets/board.html -------------------------------------------------------------------------------- /layouts/partials/_widgets/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/_widgets/category.html -------------------------------------------------------------------------------- /layouts/partials/_widgets/recent_posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/_widgets/recent_posts.html -------------------------------------------------------------------------------- /layouts/partials/_widgets/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/_widgets/tag.html -------------------------------------------------------------------------------- /layouts/partials/_widgets/tag_cloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/_widgets/tag_cloud.html -------------------------------------------------------------------------------- /layouts/partials/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/article.html -------------------------------------------------------------------------------- /layouts/partials/card-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/card-post.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/item-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/item-post.html -------------------------------------------------------------------------------- /layouts/partials/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/math.html -------------------------------------------------------------------------------- /layouts/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/pagination.html -------------------------------------------------------------------------------- /layouts/partials/post/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/post/category.html -------------------------------------------------------------------------------- /layouts/partials/post/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/post/comment.html -------------------------------------------------------------------------------- /layouts/partials/post/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/post/copyright.html -------------------------------------------------------------------------------- /layouts/partials/post/date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/post/date.html -------------------------------------------------------------------------------- /layouts/partials/post/donate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/post/donate.html -------------------------------------------------------------------------------- /layouts/partials/post/gallery.html: -------------------------------------------------------------------------------- 1 | {{/* gallery */}} -------------------------------------------------------------------------------- /layouts/partials/post/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/post/nav.html -------------------------------------------------------------------------------- /layouts/partials/post/pv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/post/pv.html -------------------------------------------------------------------------------- /layouts/partials/post/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/post/tag.html -------------------------------------------------------------------------------- /layouts/partials/post/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/post/title.html -------------------------------------------------------------------------------- /layouts/partials/post/wc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/post/wc.html -------------------------------------------------------------------------------- /layouts/partials/script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/script.html -------------------------------------------------------------------------------- /layouts/partials/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/search.html -------------------------------------------------------------------------------- /layouts/partials/sidebar-toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/sidebar-toc.html -------------------------------------------------------------------------------- /layouts/partials/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/sidebar.html -------------------------------------------------------------------------------- /layouts/partials/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/partials/social.html -------------------------------------------------------------------------------- /layouts/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Request-rate: 1/1 3 | Crawl-delay: 5 4 | -------------------------------------------------------------------------------- /layouts/shortcodes/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/layouts/shortcodes/alert.html -------------------------------------------------------------------------------- /static/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/static/avatar.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/static/fonts/README.md -------------------------------------------------------------------------------- /static/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/static/fonts/iconfont.eot -------------------------------------------------------------------------------- /static/fonts/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/static/fonts/iconfont.svg -------------------------------------------------------------------------------- /static/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/static/fonts/iconfont.ttf -------------------------------------------------------------------------------- /static/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/static/fonts/iconfont.woff -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoheiAh/hugo-theme-pure/HEAD/theme.toml --------------------------------------------------------------------------------