├── .gitignore ├── LICENSE.md ├── README.md ├── archetypes └── default.md ├── data └── authors │ └── example.yml ├── images ├── screen.png ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── list.html │ └── single.html ├── page │ ├── cover.html │ ├── index.html │ ├── list.html │ └── single.html └── partials │ ├── author.html │ ├── disqus.html │ ├── footer.html │ ├── header.html │ ├── home-content.html │ ├── li.html │ ├── navigation.html │ ├── pagination.html │ ├── semantic.html │ ├── share.html │ ├── social.html │ ├── suggestions.html │ └── twitter_card.html ├── static ├── css │ ├── nav.css │ └── screen.css ├── fonts │ ├── Genericons │ │ ├── Genericons.eot │ │ ├── Genericons.svg │ │ ├── Genericons.ttf │ │ ├── Genericons.woff │ │ ├── example.html │ │ └── genericons.css │ ├── Inconsolata │ │ ├── Inconsolata-Regular.ttf │ │ └── OFL.txt │ ├── Merriweather │ │ ├── Merriweather-Bold.ttf │ │ ├── Merriweather-BoldItalic.ttf │ │ ├── Merriweather-Light.ttf │ │ ├── Merriweather-LightItalic.ttf │ │ └── OFL.txt │ └── Open_Sans │ │ ├── LICENSE.txt │ │ ├── OpenSans-Bold.ttf │ │ └── OpenSans-Regular.ttf ├── images │ ├── keybase.svg │ └── stackoverflow.svg └── js │ ├── index.js │ ├── jquery.fitvids.js │ └── jquery.js └── theme.toml /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .DS_Store -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /data/authors/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/data/authors/example.yml -------------------------------------------------------------------------------- /images/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/images/screen.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/page/cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/page/cover.html -------------------------------------------------------------------------------- /layouts/page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/page/index.html -------------------------------------------------------------------------------- /layouts/page/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/page/list.html -------------------------------------------------------------------------------- /layouts/page/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/page/single.html -------------------------------------------------------------------------------- /layouts/partials/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/author.html -------------------------------------------------------------------------------- /layouts/partials/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/disqus.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/home-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/home-content.html -------------------------------------------------------------------------------- /layouts/partials/li.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/li.html -------------------------------------------------------------------------------- /layouts/partials/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/navigation.html -------------------------------------------------------------------------------- /layouts/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/pagination.html -------------------------------------------------------------------------------- /layouts/partials/semantic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/semantic.html -------------------------------------------------------------------------------- /layouts/partials/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/share.html -------------------------------------------------------------------------------- /layouts/partials/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/social.html -------------------------------------------------------------------------------- /layouts/partials/suggestions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/suggestions.html -------------------------------------------------------------------------------- /layouts/partials/twitter_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/layouts/partials/twitter_card.html -------------------------------------------------------------------------------- /static/css/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/css/nav.css -------------------------------------------------------------------------------- /static/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/css/screen.css -------------------------------------------------------------------------------- /static/fonts/Genericons/Genericons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Genericons/Genericons.eot -------------------------------------------------------------------------------- /static/fonts/Genericons/Genericons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Genericons/Genericons.svg -------------------------------------------------------------------------------- /static/fonts/Genericons/Genericons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Genericons/Genericons.ttf -------------------------------------------------------------------------------- /static/fonts/Genericons/Genericons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Genericons/Genericons.woff -------------------------------------------------------------------------------- /static/fonts/Genericons/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Genericons/example.html -------------------------------------------------------------------------------- /static/fonts/Genericons/genericons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Genericons/genericons.css -------------------------------------------------------------------------------- /static/fonts/Inconsolata/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Inconsolata/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/Inconsolata/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Inconsolata/OFL.txt -------------------------------------------------------------------------------- /static/fonts/Merriweather/Merriweather-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Merriweather/Merriweather-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/Merriweather/Merriweather-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Merriweather/Merriweather-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Merriweather/Merriweather-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Merriweather/Merriweather-Light.ttf -------------------------------------------------------------------------------- /static/fonts/Merriweather/Merriweather-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Merriweather/Merriweather-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Merriweather/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Merriweather/OFL.txt -------------------------------------------------------------------------------- /static/fonts/Open_Sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Open_Sans/LICENSE.txt -------------------------------------------------------------------------------- /static/fonts/Open_Sans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Open_Sans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/Open_Sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/fonts/Open_Sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /static/images/keybase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/images/keybase.svg -------------------------------------------------------------------------------- /static/images/stackoverflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/images/stackoverflow.svg -------------------------------------------------------------------------------- /static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/js/index.js -------------------------------------------------------------------------------- /static/js/jquery.fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/js/jquery.fitvids.js -------------------------------------------------------------------------------- /static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/static/js/jquery.js -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vjeantet/hugo-theme-casper/HEAD/theme.toml --------------------------------------------------------------------------------