├── exampleSite ├── static │ └── .gitkeep ├── content │ ├── about.md │ └── post │ │ ├── hello-hugo.md │ │ └── first.md └── config.toml ├── archetypes └── default.md ├── images ├── tn.png └── screenshot.png ├── static ├── img │ ├── author.jpg │ ├── pacman.jpg │ ├── favicon.ico │ └── logo.svg ├── fancybox │ ├── blank.gif │ ├── fancybox_loading.gif │ ├── fancybox_overlay.png │ ├── fancybox_sprite.png │ ├── fancybox_sprite@2x.png │ ├── fancybox_loading@2x.gif │ ├── helpers │ │ ├── fancybox_buttons.png │ │ ├── jquery.fancybox-thumbs.css │ │ ├── jquery.fancybox-buttons.css │ │ ├── jquery.fancybox-buttons.js │ │ ├── jquery.fancybox-thumbs.js │ │ └── jquery.fancybox-media.js │ ├── jquery.fancybox.css │ ├── jquery.fancybox.pack.js │ └── jquery.fancybox.js ├── font │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── hack │ │ ├── fonts │ │ ├── eot │ │ │ ├── hack-bold-webfont.eot │ │ │ ├── hack-regular-webfont.eot │ │ │ ├── hack-boldoblique-webfont.eot │ │ │ ├── hack-regularoblique-webfont.eot │ │ │ └── latin │ │ │ │ ├── hack-bold-latin-webfont.eot │ │ │ │ ├── hack-regular-latin-webfont.eot │ │ │ │ ├── hack-boldoblique-latin-webfont.eot │ │ │ │ └── hack-regularoblique-latin-webfont.eot │ │ ├── ttf │ │ │ ├── hack-bold-webfont.ttf │ │ │ ├── hack-regular-webfont.ttf │ │ │ ├── hack-boldoblique-webfont.ttf │ │ │ ├── hack-regularoblique-webfont.ttf │ │ │ └── latin │ │ │ │ ├── hack-bold-latin-webfont.ttf │ │ │ │ ├── hack-regular-latin-webfont.ttf │ │ │ │ ├── hack-boldoblique-latin-webfont.ttf │ │ │ │ └── hack-regularoblique-latin-webfont.ttf │ │ ├── woff │ │ │ ├── hack-bold-webfont.woff │ │ │ ├── hack-regular-webfont.woff │ │ │ ├── hack-boldoblique-webfont.woff │ │ │ ├── hack-regularoblique-webfont.woff │ │ │ └── latin │ │ │ │ ├── hack-bold-latin-webfont.woff │ │ │ │ ├── hack-regular-latin-webfont.woff │ │ │ │ ├── hack-boldoblique-latin-webfont.woff │ │ │ │ └── hack-regularoblique-latin-webfont.woff │ │ └── woff2 │ │ │ ├── hack-bold-webfont.woff2 │ │ │ ├── hack-regular-webfont.woff2 │ │ │ ├── hack-boldoblique-webfont.woff2 │ │ │ ├── hack-regularoblique-webfont.woff2 │ │ │ └── latin │ │ │ ├── hack-bold-latin-webfont.woff2 │ │ │ ├── hack-regular-latin-webfont.woff2 │ │ │ ├── hack-boldoblique-latin-webfont.woff2 │ │ │ └── hack-regularoblique-latin-webfont.woff2 │ │ └── css │ │ ├── hack-extended.min.css │ │ ├── hack.min.css │ │ ├── hack-extended.css │ │ └── hack.css ├── highlight │ ├── styles │ │ └── github.css │ └── highlight.pack.js └── css │ └── style.css ├── layouts ├── partials │ ├── widgets │ │ ├── rss.html │ │ ├── tagcloud.html │ │ ├── tags.html │ │ ├── categories.html │ │ └── archive.html │ ├── article_footer.html │ ├── article.html │ ├── gtag_google_analytics.html │ ├── sidebar.html │ ├── google_analytics.html │ ├── article_catetags.html │ ├── article_header.html │ ├── article_content.html │ ├── header.html │ ├── footer.html │ ├── comment.html │ ├── head.html │ └── after_footer.html ├── _default │ ├── single.html │ └── list.html ├── 404.html └── index.html ├── theme.toml ├── LICENSE.md └── README.md /exampleSite/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /static/img/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/img/author.jpg -------------------------------------------------------------------------------- /static/img/pacman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/img/pacman.jpg -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/fancybox/blank.gif -------------------------------------------------------------------------------- /static/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/FontAwesome.otf -------------------------------------------------------------------------------- /static/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /static/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /static/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /static/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fancybox/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/fancybox/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /static/fancybox/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/fancybox/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /static/fancybox/helpers/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/fancybox/helpers/fancybox_buttons.png -------------------------------------------------------------------------------- /static/font/hack/fonts/eot/hack-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/eot/hack-bold-webfont.eot -------------------------------------------------------------------------------- /static/font/hack/fonts/ttf/hack-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/ttf/hack-bold-webfont.ttf -------------------------------------------------------------------------------- /static/font/hack/fonts/eot/hack-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/eot/hack-regular-webfont.eot -------------------------------------------------------------------------------- /static/font/hack/fonts/ttf/hack-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/ttf/hack-regular-webfont.ttf -------------------------------------------------------------------------------- /static/font/hack/fonts/woff/hack-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff/hack-bold-webfont.woff -------------------------------------------------------------------------------- /static/font/hack/fonts/woff/hack-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff/hack-regular-webfont.woff -------------------------------------------------------------------------------- /static/font/hack/fonts/woff2/hack-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff2/hack-bold-webfont.woff2 -------------------------------------------------------------------------------- /static/font/hack/fonts/eot/hack-boldoblique-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/eot/hack-boldoblique-webfont.eot -------------------------------------------------------------------------------- /static/font/hack/fonts/ttf/hack-boldoblique-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/ttf/hack-boldoblique-webfont.ttf -------------------------------------------------------------------------------- /static/font/hack/fonts/woff2/hack-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff2/hack-regular-webfont.woff2 -------------------------------------------------------------------------------- /static/font/hack/fonts/eot/hack-regularoblique-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/eot/hack-regularoblique-webfont.eot -------------------------------------------------------------------------------- /static/font/hack/fonts/ttf/hack-regularoblique-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/ttf/hack-regularoblique-webfont.ttf -------------------------------------------------------------------------------- /static/font/hack/fonts/woff/hack-boldoblique-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff/hack-boldoblique-webfont.woff -------------------------------------------------------------------------------- /static/font/hack/fonts/eot/latin/hack-bold-latin-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/eot/latin/hack-bold-latin-webfont.eot -------------------------------------------------------------------------------- /static/font/hack/fonts/ttf/latin/hack-bold-latin-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/ttf/latin/hack-bold-latin-webfont.ttf -------------------------------------------------------------------------------- /static/font/hack/fonts/woff/hack-regularoblique-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff/hack-regularoblique-webfont.woff -------------------------------------------------------------------------------- /static/font/hack/fonts/woff2/hack-boldoblique-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff2/hack-boldoblique-webfont.woff2 -------------------------------------------------------------------------------- /static/font/hack/fonts/eot/latin/hack-regular-latin-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/eot/latin/hack-regular-latin-webfont.eot -------------------------------------------------------------------------------- /static/font/hack/fonts/ttf/latin/hack-regular-latin-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/ttf/latin/hack-regular-latin-webfont.ttf -------------------------------------------------------------------------------- /static/font/hack/fonts/woff/latin/hack-bold-latin-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff/latin/hack-bold-latin-webfont.woff -------------------------------------------------------------------------------- /static/font/hack/fonts/woff2/hack-regularoblique-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff2/hack-regularoblique-webfont.woff2 -------------------------------------------------------------------------------- /static/font/hack/fonts/woff/latin/hack-regular-latin-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff/latin/hack-regular-latin-webfont.woff -------------------------------------------------------------------------------- /static/font/hack/fonts/woff2/latin/hack-bold-latin-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff2/latin/hack-bold-latin-webfont.woff2 -------------------------------------------------------------------------------- /static/font/hack/fonts/eot/latin/hack-boldoblique-latin-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/eot/latin/hack-boldoblique-latin-webfont.eot -------------------------------------------------------------------------------- /static/font/hack/fonts/ttf/latin/hack-boldoblique-latin-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/ttf/latin/hack-boldoblique-latin-webfont.ttf -------------------------------------------------------------------------------- /static/font/hack/fonts/woff2/latin/hack-regular-latin-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff2/latin/hack-regular-latin-webfont.woff2 -------------------------------------------------------------------------------- /static/font/hack/fonts/eot/latin/hack-regularoblique-latin-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/eot/latin/hack-regularoblique-latin-webfont.eot -------------------------------------------------------------------------------- /static/font/hack/fonts/ttf/latin/hack-regularoblique-latin-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/ttf/latin/hack-regularoblique-latin-webfont.ttf -------------------------------------------------------------------------------- /static/font/hack/fonts/woff/latin/hack-boldoblique-latin-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff/latin/hack-boldoblique-latin-webfont.woff -------------------------------------------------------------------------------- /static/font/hack/fonts/woff2/latin/hack-boldoblique-latin-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff2/latin/hack-boldoblique-latin-webfont.woff2 -------------------------------------------------------------------------------- /static/font/hack/fonts/woff/latin/hack-regularoblique-latin-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff/latin/hack-regularoblique-latin-webfont.woff -------------------------------------------------------------------------------- /exampleSite/content/about.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = "2016-03-20T23:28:02+08:00" 3 | title = "about" 4 | 5 | +++ 6 | 7 | ## 关于 8 | 9 | ### Hugo 10 | 11 | ### 主题 12 | 13 | balabalbalbalbal... 14 | 15 | 16 | -------------------------------------------------------------------------------- /static/font/hack/fonts/woff2/latin/hack-regularoblique-latin-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderzh/hugo-pacman-theme/HEAD/static/font/hack/fonts/woff2/latin/hack-regularoblique-latin-webfont.woff2 -------------------------------------------------------------------------------- /layouts/partials/widgets/rss.html: -------------------------------------------------------------------------------- 1 | {{ if .RSSLink }} 2 |