├── .DS_Store ├── .gitignore ├── assets ├── .DS_Store ├── images │ ├── favicon.webp │ └── feature.webp └── style.css ├── README.md ├── _data └── navigation.yml ├── 404.md ├── _layouts ├── post.html └── default.html ├── _includes ├── navigation.html └── head.html ├── Gemfile ├── blog.md ├── _config.yml ├── _posts └── 2023 │ ├── 2023-01-01-another-fucking-post.md │ └── 2023-01-02-this-is-a-fucking-post.md ├── Gemfile.lock └── index.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevquirk/startablog/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | .jekyll-cache/ 4 | .jekyll-metadata 5 | -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevquirk/startablog/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Start a F**king Blog! 2 | 3 | Repo for the startafuckingblog.com website 4 | -------------------------------------------------------------------------------- /assets/images/favicon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevquirk/startablog/HEAD/assets/images/favicon.webp -------------------------------------------------------------------------------- /assets/images/feature.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevquirk/startablog/HEAD/assets/images/feature.webp -------------------------------------------------------------------------------- /_data/navigation.yml: -------------------------------------------------------------------------------- 1 | - name: Home 2 | link: / 3 | 4 | - name: Fucking Blog 5 | link: /fucking-blog/ 6 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Page not found :( 4 | --- 5 | 6 | The requested page could not be found. -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |
5 | 6 | {{ content }} 7 | -------------------------------------------------------------------------------- /_includes/navigation.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | 5 | git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } 6 | 7 | # gem "rails" 8 | gem "jekyll" 9 | gem "webrick", "~> 1.8" 10 | 11 | # Plugins 12 | group :jekyll_plugins do 13 | gem 'jekyll-seo-tag' 14 | end 15 | -------------------------------------------------------------------------------- /blog.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Fucking Blog 4 | description: This is a fucking blog page. Enjoy it. 5 | permalink: /fucking-blog/ 6 | --- 7 | 8 | {% for post in site.posts %} 9 |{{ page.description }}
12 |