├── .gitignore ├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets └── sass │ └── override.scss ├── exampleSite ├── config.toml ├── content │ ├── _index.md │ ├── about.md │ ├── archives.md │ ├── homepage │ │ ├── about.md │ │ ├── index.md │ │ └── work.md │ └── post │ │ ├── _index.md │ │ ├── emoji-support.md │ │ ├── markdown-syntax.md │ │ ├── math-typesetting.mmark │ │ ├── placeholder-text.md │ │ └── rich-content.md └── static │ ├── favicon.ico │ └── images │ └── avatar.png ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── list.html │ └── single.html ├── categories │ └── list.html ├── index.html ├── partials │ ├── category-posts.html │ ├── footer.html │ ├── head.html │ └── header.html ├── post │ ├── list.html │ └── single.html └── tag │ └── list.html ├── package.json ├── static ├── images │ └── avatar.png └── webfonts │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff2 │ ├── fa-v4compatibility.ttf │ └── fa-v4compatibility.woff2 └── theme.toml /.gitignore: -------------------------------------------------------------------------------- 1 | exampleSite/Makefile 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/sass/override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/assets/sass/override.scss -------------------------------------------------------------------------------- /exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/exampleSite/config.toml -------------------------------------------------------------------------------- /exampleSite/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/exampleSite/content/_index.md -------------------------------------------------------------------------------- /exampleSite/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/exampleSite/content/about.md -------------------------------------------------------------------------------- /exampleSite/content/archives.md: -------------------------------------------------------------------------------- 1 | --- 2 | date: 2019-05-28 3 | type: section 4 | layout: "archives" 5 | --- -------------------------------------------------------------------------------- /exampleSite/content/homepage/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/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/austingebauer/devise/HEAD/exampleSite/content/homepage/work.md -------------------------------------------------------------------------------- /exampleSite/content/post/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/exampleSite/content/post/_index.md -------------------------------------------------------------------------------- /exampleSite/content/post/emoji-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/exampleSite/content/post/emoji-support.md -------------------------------------------------------------------------------- /exampleSite/content/post/markdown-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/exampleSite/content/post/markdown-syntax.md -------------------------------------------------------------------------------- /exampleSite/content/post/math-typesetting.mmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/exampleSite/content/post/math-typesetting.mmark -------------------------------------------------------------------------------- /exampleSite/content/post/placeholder-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/exampleSite/content/post/placeholder-text.md -------------------------------------------------------------------------------- /exampleSite/content/post/rich-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/exampleSite/content/post/rich-content.md -------------------------------------------------------------------------------- /exampleSite/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/exampleSite/static/favicon.ico -------------------------------------------------------------------------------- /exampleSite/static/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/exampleSite/static/images/avatar.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 |

404 - Not Found

2 | -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/categories/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/layouts/categories/list.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/category-posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/layouts/partials/category-posts.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/post/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/layouts/post/list.html -------------------------------------------------------------------------------- /layouts/post/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/layouts/post/single.html -------------------------------------------------------------------------------- /layouts/tag/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/layouts/tag/list.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/package.json -------------------------------------------------------------------------------- /static/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/static/images/avatar.png -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/static/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/static/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austingebauer/devise/HEAD/theme.toml --------------------------------------------------------------------------------