--- layout: page title: Theme Setup excerpt: "Instructions on how to install and customize the Jekyll theme So Simple." modified: 2014-08-08T20:04:41.231140-04:00 image: feature: so-simple-sample-image-6.jpg credit: WeGraphics creditlink: http://wegraphics.net/downloads/free-ultimate-blurred-background-pack/ --- General notes and suggestions for customizing **So Simple Theme**. * Table of Contents {:toc} ## Installation So Simple now requires [Jekyll](http://jekyllrb.com/) 2.x. Make sure to run `gem update jekyll` if you aren't on the latest version or `gem install jekyll` if this is your first time installing it. If you are creating a new Jekyll site using So Simple follow these steps: 1. Fork the [So Simple repo](http://github.com/mmistakes/so-simple-theme/fork). 2. Clone the repo you just forked and rename it. 3. [Install Bundler](http://bundler.io) `gem install bundler` and Run `bundle install` to install all dependencies (Jekyll, [Jekyll-Sitemap](https://github.com/jekyll/jekyll-sitemap), [Octopress](https://github.com/octopress/octopress), etc) 4. Update `config.yml`, add navigation, and replace demo posts and pages with your own. Full details below. If you want to use So Simple with an existing Jekyll site follow these steps: 1. [Download So Simple](https://github.com/mmistakes/so-simple-theme/archive/master.zip) and unzip. 2. Rename `so-simple-theme-master` to something meaningful ie: `new-site` 3. Run `bundle install` to install all dependencies (Jekyll, [Jekyll-Sitemap](https://github.com/jekyll/jekyll-sitemap), [Octopress](https://github.com/octopress/octopress), etc) 4. Remove demo posts/pages and replace with your own posts, pages, and any other content you want to move over. 5. Update posts' and pages' YAML to match variables used by So Simple. Full details below. 6. Update `_config.yml` and add navigation links and additional author data if applicable. Full details below. **Pro-tip:** Delete the `gh-pages` branch after cloning and start fresh by branching off `master`. There is a bunch of garbage in `gh-pages` used for the theme's demo site that I'm guessing you won't want. {: .notice} --- ## Scaffolding How So Simple is organized and what the various files are. All posts, layouts, includes, stylesheets, assets, and whatever else is grouped nicely under the root folder. The compiled Jekyll site outputs to `_site/`. {% highlight text %} so-simple-theme/ ├── _includes/ | ├── browser-upgrade.html # prompt to install a modern browser for < IE9 | ├── disqus_comments.html # Disqus comments script | ├── footer.html # site footer | ├── head.html # site head | ├── navigation.html # site top navigation | ├── open-graph.html # Twitter Cards and Open Graph meta data | └── scripts.html # site scripts | └── site-search.html # site search overlay ├── _layouts/ | ├── page.html # single column page layout | └── post.html # main content with sidebar for author/post details ├── _posts/ # MarkDown formatted posts ├── _sass/ # Sass stylesheets ├── _templates/ # used by Octopress to define YAML variables for new posts/pages ├── about/ # sample about page ├── articles/ # sample articles category page ├── assets/ | ├── css/ # compiled stylesheets | ├── fonts/ # webfonts | ├── js/ | | ├── _main.js # main JavaScript file, plugin settings, etc | | ├── plugins/ # scripts and jQuery plugins to combine with _main.js | | ├── scripts.min.js # concatenated and minified _main.js + plugin scripts | | └── vendor/ # vendor scripts to leave alone and load as is | └── less/ ├── blog/ # sample blog category page ├── images/ # images for posts and pages ├── 404.md # 404 page ├── feed.xml # Atom feed template ├── index.md # sample homepage. lists 5 latest posts └── theme-setup/ # theme setup page. safe to remove {% endhighlight %} --- ## Site Setup A quick checklist of the files you'll want to edit to get up and running. ### Site Wide Configuration `_config.yml` is your friend. Open it up and personalize it. Most variables are self explanatory but here's an explanation of each if needed: #### title The title of your site... shocker! Example `title: My Awesome Site` #### logo Your site's logo, appears in the header below the navigation bar and is used as a default image for Twitter Cards when a feature is not defined. Place in the `images` folder. #### url Used to generate absolute URLs for sitemaps, feeds and for generating canonical URLs in a page's `
`. When developing locally either comment this out or use something like `http://localhost:4000` so all assets load properly. *Don't include a trailing `/`*. Examples: {% highlight yaml %} url: http://mmistakes.github.io/so-simple-theme url: http://localhost:4000 url: http://mademistakes.com url: {% endhighlight %} #### Google Analytics and Webmaster Tools Google Analytics UA and Webmaster Tool verification tags can be entered under `owner` in `_config.yml`. For more information on obtaining these meta tags check [Google Webmaster Tools](http://support.google.com/webmasters/bin/answer.py?hl=en&answer=35179) and [Bing Webmaster Tools](https://ssl.bing.com/webmaster/configure/verify/ownership) support. ### Navigation Links To set what links appear in the top navigation edit `_data/navigation.yml`. Use the following format to set the URL and title for as many links as you'd like. *External links will open in a new window.* {% highlight yaml %} - title: Portfolio url: /portfolio/ - title: Made Mistakes url: http://mademistakes.com {% endhighlight %} --- ## Adding New Content Install the [Octopress](https://github.com/octopress/octopress) gem if it isn't already. {% highlight bash %} $ gem install octopress --pre {% endhighlight %} ### New Post Default command {% highlight bash %} $ octopress new post "Post Title" {% endhighlight %} Default works great if you want all your posts in one directory, but if you're like me and want to group them into subfolders like `/posts`, `/portfolio`, etc. Then this is the command for you. By specifying the DIR it will create a new post in that folder and populate the `categories:` YAML with the same value. {% highlight bash %} $ octopress new post "New Post Title" --dir posts {% endhighlight %} ### New Page To create a new page use the following command. {% highlight bash %} $ octopress new page new-page/ {% endhighlight %} This will create a page at `/new-page/index.md` --- ## Layouts and Content Explanations of the various `_layouts` included with the theme and when to use them. ### Post and Page These two layouts are very similar. Both have an author sidebar, allow for large feature images at the top, and optional Disqus comments. The only real difference is the post layout includes related posts at the end of the page. ### Categories In the sample posts folder you may have noticed `categories: articles` in the YAML front matter. Categories can be used to group posts into sub-folders. If you decide to rename or add categories you will need to create new category index pages. For example. Say you want to group all your posts under blog/ instead of articles/. In your post add `category: blog` to the YAML front matter, rename or duplicate articles/index.md to blog/index.md and update the *for loop* to limit posts to just the blog category. {% highlight text %} {% raw %} {% for post in site.categories.blog %} {% endraw %} {% endhighlight %} If done correctly /blog/ should be a page index of only posts with a category of `blog`. ### Feature Images A good rule of thumb is to keep feature images nice and wide so you don't push the body text too far down. An image cropped around around 1024 x 256 pixels will keep file size down with an acceptable resolution for most devices. If you want to serve these images responsively I'd suggest looking at the [Jekyll Picture Tag](https://github.com/robwierzbowski/jekyll-picture-tag) plugin[^plugins]. [^plugins]: If you're using GitHub Pages to host your site be aware that plugins are disabled. You'll need to build your site locally and then manually deploy if you want to use this sweet plugin. The post and page layouts make the assumption that the feature images live in the `images/` folder. To add a feature image to a post or page just include the filename in the front matter like so. {% highlight yaml %} image: feature: feature-image-filename.jpg thumb: thumbnail-image.jpg #keep it square 200x200 px is good {% endhighlight %} To add attribution to a feature image use the following YAML front matter on posts or pages. Image credits appear directly below the feature image with a link back to the original source if supplied. {% highlight yaml %} image: feature: feature-image-filename.jpg credit: Michael Rose #name of the person or site you want to credit creditlink: http://mademistakes.com #url to their site or licensing {% endhighlight %} ### Videos Video embeds are responsive and scale with the width of the main content block with the help of [FitVids](http://fitvidsjs.com/). Not sure if this only effects Kramdown or if it's an issue with Markdown in general. But adding YouTube video embeds causes errors when building your Jekyll site. To fix add a space between the `