├── .dependencies ├── .github └── workflows │ └── build-skeleton.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── accounts └── .gitkeep ├── blueprints.yaml ├── config ├── plugins │ ├── simplesearch.yaml │ └── tntsearch.yaml ├── site.yaml ├── system.yaml └── themes │ └── quark.yaml ├── data └── .gitkeep ├── hebe.json ├── pages ├── 01.blog │ ├── blog.md │ ├── classic-modern-architecture │ │ ├── item.md │ │ └── unsplash-luca-bravo.jpg │ ├── daring-fireball-link │ │ └── item.md │ ├── focus-and-blur │ │ ├── item.md │ │ └── unsplash-focus.jpg │ ├── hero-classes │ │ ├── item.md │ │ └── unsplash-overcast-mountains.jpg │ ├── london-at-night │ │ ├── item.md │ │ ├── unsplash-london-night.jpg │ │ └── unsplash-xbrunel-johnson.jpg │ ├── mountain.jpg │ ├── random-thoughts │ │ └── item.md │ ├── text-typography │ │ ├── item.md │ │ └── unsplash-text.jpg │ └── the-urban-jungle │ │ ├── item.md │ │ └── unsplash-sidney-perry.jpg └── modules │ ├── default.md │ └── sidebar │ └── default.md ├── plugins └── .gitkeep ├── screenshot.jpg └── themes └── .gitkeep /.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/.dependencies -------------------------------------------------------------------------------- /.github/workflows/build-skeleton.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/.github/workflows/build-skeleton.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/README.md -------------------------------------------------------------------------------- /accounts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/blueprints.yaml -------------------------------------------------------------------------------- /config/plugins/simplesearch.yaml: -------------------------------------------------------------------------------- 1 | enabled: true -------------------------------------------------------------------------------- /config/plugins/tntsearch.yaml: -------------------------------------------------------------------------------- 1 | enabled: false -------------------------------------------------------------------------------- /config/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/config/site.yaml -------------------------------------------------------------------------------- /config/system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/config/system.yaml -------------------------------------------------------------------------------- /config/themes/quark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/config/themes/quark.yaml -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hebe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/hebe.json -------------------------------------------------------------------------------- /pages/01.blog/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/blog.md -------------------------------------------------------------------------------- /pages/01.blog/classic-modern-architecture/item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/classic-modern-architecture/item.md -------------------------------------------------------------------------------- /pages/01.blog/classic-modern-architecture/unsplash-luca-bravo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/classic-modern-architecture/unsplash-luca-bravo.jpg -------------------------------------------------------------------------------- /pages/01.blog/daring-fireball-link/item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/daring-fireball-link/item.md -------------------------------------------------------------------------------- /pages/01.blog/focus-and-blur/item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/focus-and-blur/item.md -------------------------------------------------------------------------------- /pages/01.blog/focus-and-blur/unsplash-focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/focus-and-blur/unsplash-focus.jpg -------------------------------------------------------------------------------- /pages/01.blog/hero-classes/item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/hero-classes/item.md -------------------------------------------------------------------------------- /pages/01.blog/hero-classes/unsplash-overcast-mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/hero-classes/unsplash-overcast-mountains.jpg -------------------------------------------------------------------------------- /pages/01.blog/london-at-night/item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/london-at-night/item.md -------------------------------------------------------------------------------- /pages/01.blog/london-at-night/unsplash-london-night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/london-at-night/unsplash-london-night.jpg -------------------------------------------------------------------------------- /pages/01.blog/london-at-night/unsplash-xbrunel-johnson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/london-at-night/unsplash-xbrunel-johnson.jpg -------------------------------------------------------------------------------- /pages/01.blog/mountain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/mountain.jpg -------------------------------------------------------------------------------- /pages/01.blog/random-thoughts/item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/random-thoughts/item.md -------------------------------------------------------------------------------- /pages/01.blog/text-typography/item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/text-typography/item.md -------------------------------------------------------------------------------- /pages/01.blog/text-typography/unsplash-text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/text-typography/unsplash-text.jpg -------------------------------------------------------------------------------- /pages/01.blog/the-urban-jungle/item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/the-urban-jungle/item.md -------------------------------------------------------------------------------- /pages/01.blog/the-urban-jungle/unsplash-sidney-perry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/01.blog/the-urban-jungle/unsplash-sidney-perry.jpg -------------------------------------------------------------------------------- /pages/modules/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | routable: false 3 | --- -------------------------------------------------------------------------------- /pages/modules/sidebar/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/pages/modules/sidebar/default.md -------------------------------------------------------------------------------- /plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-skeleton-blog-site/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /themes/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------