Cartwheel is a blog theme for Jekyll built using HTML, Sass, and jQuery. External stylesheets and libraries included are Google Fonts, Font Awesome, Normalize.CSS, Instafetch.js, Owl Carousel 2, Smooth Scroll, and WOW.js.
All dependencies are saved in the Gemfile
. Run bundle install
(Install Bundler if it is not already).
I made everything as easy as possible to edit. Most things can be found in the _config.yml
, but if more editing is required digging through the code will be required. The head.html
file is in the _includes
folder and the Sass variables are found in the _base.scss
file in the _sass
folder.
baseurl: ""
baseurl
- Path of blog if adding this on to another website
color_alpha: feeaeb
color_beta: 05009e
color_alpha
- Main colorcolor_beta
- Secondary color
google_analytics: UA—XXXXXXXX-X
google_analytics
- Option field to replace with correct Google Analytics code
instagram_key:
instagram_caption:
instagram_key
- See Instafetch.js docs for API key informationinstagram_caption
- true or false to display Instagram captions
title:
description:
url: ""
email:
twitter_username:
default_img:
title
- Title of blogdescription
- Description of blog (recommended to not go over 160 characters)url
- URL of main websiteemail
- Email addresstwitter_username
- Twitter usernamedefault_img
- Image that will appear when posting links on social networks
name:
social:
github:
name
- Full name for SEO purposessocial
- List of social networks for icons in the contact card and the footer (Font Awesome is used, so only match the name of the icon, but do not includefa-
)
exclude: ["node_modules", "gulpfile.js", "assets/js/app.js", "README.md", "Gemfile", "Gemfile.lock"]
permalink: /:year/:month/:day/:title/
include
- Folders that are not automatically included in Jekyllexclude
- Folders that are excluded from_site
permalink
- URL structure of blog posts
---
layout: post
title: ""
date:
categories:
description:
image:
image-sm:
---
This is the YAML front matter block for blog posts.
layout
- This field will always be posttitle
- The title of the blog postdate
- The date that will appear on the blog posttags
- Optional field that can be entered as an array or a listdescription
- Optional field for SEO (recommended to not go over 160 characters)image
- The blog theme was designed for 2000x1200px images (optimize your images because this is a picture heavy theme)