Skip to content

Instantly share code, notes, and snippets.

@wsargent
Last active May 24, 2018 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wsargent/988bcf0d802b118b9af228e0f9b219a1 to your computer and use it in GitHub Desktop.
Save wsargent/988bcf0d802b118b9af228e0f9b219a1 to your computer and use it in GitHub Desktop.
Octopress configuration files for https://tersesystems.com
# Site settings
title: Terse Systems
email: will@tersesystems.com
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://tersesystems.com"
header_pages:
- blog/index.html
- blog/archives.html
show_post_footers: true
collections:
category:
output: true
code:
output: true
# Optional features
show_social_icons: true
# Disqus post comments
disqus_shortname: tersesystems
# Social icons
github_username: wsargent
twitter_username: will_sargent
# UI Text
text:
pagination:
newer: 'Newer'
older: 'Older'
post:
updated: 'Updated'
minute_read: 'minute read'
related_posts: 'Related Posts'
index:
coming_soon: 'Coming soon...'
og_locale: 'en_US'
# Octopress 2-style excerpts
excerpt_separator: "<!-- more -->"
excerpt_link: "Read on &rarr;"
# Linkblog (external-url)
linkblog:
permalink_label: "&#8734;"
permalink_label_feed: "&#9875; Permalink"
linkpost:
marker: "&rarr;"
# Build settings
markdown: kramdown
kramdown:
smart_quotes: ["apos", "apos", "quot", "quot"] # Disable smart-quotes
input: GFM
syntax_highlighter: rouge
permalink: /blog/:year/:month/:day/:title/ # Octopress 2-style permalink
paginate: 1
paginate_path: "/blog/page/:num"
category_dir: "blog/categories"
sass:
style: compressed
include:
- .htaccess
- .nojekyll
exclude:
- Gemfile
- Gemfile.lock
- script/
- vendor/
- LICENSE.txt
- README.md
- docker-compose.yml
plugins:
- jekyll-paginate
- jekyll-gist
- jekyll-scalafiddle
method: git # How do you want to deploy? git, rsync or s3.
site_dir: _site # Location of your static site files.
git_url: git@github.com:wsargent/tersesystems # remote repository url, e.g. git@github.com:username/repo_name
# Note on git_branch:
# If using GitHub project pages, set the branch to 'gh-pages'.
# For GitHub user/organization pages or Heroku, set the branch to 'master'.
#
git_branch: gh-pages # Git branch where static site files are commited
# remote_path: # Destination directory
source "https://rubygems.org"
gem "jekyll", "~> 3.6.0"
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.9.2"
gem 'jekyll-paginate'
gem 'jekyll-redirect-from'
gem 'jekyll-sitemap'
gem 'nokogiri'
gem 'jekyll-scalafiddle'
gem 'octopress'
gem 'octopress-code-highlighter', git: 'https://github.com/randycoulman/code-highlighter.git', branch: 'handle-multiline-spans' # Fix for multi-line <span>'s (gh:octopress/code-highlighter #8)
gem 'octopress-codeblock'
gem 'octopress-gist'
gem 'octopress-codefence', git: 'https://github.com/mkleucker/codefence.git', branch: 'fix-warning-deprecated' # Fix Jeykll 3 compatibility (gh:octopress/codefence #17)
gem 'octopress-image-tag'
gem 'octopress-ink', git: 'https://github.com/iphoting/ink.git', branch: 'jekyll-3' # Fix Jekyll 3 compatibility (gh:octopress/ink #65)
gem 'octopress-linkblog', git: 'https://github.com/andrewdavidbell/linkblog.git', branch: 'jekyll3' # Fix Jekyll 3 compatibility (gh:octopress/linkblog #7)
gem 'octopress-quote-tag', git: 'https://github.com/NickTomlin/quote-tag.git', branch: 'master' # Fix Jeykll 3 compatibility
gem 'octopress-solarized'
gem "jekyll-theme-hydeout", "~> 3.4"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment