Sha256: 5994399a85282b9f03eeae4f50a65df4453186703b292dbecaac150a43b9fa9c
Contents?: true
Size: 905 Bytes
Versions: 4
Compression:
Stored size: 905 Bytes
Contents
require File.expand_path("../helpers/download_helpers", __FILE__) page "/blog_feed.xml", layout: false ignore "/download-archive-single.html" # Archived download pages $vagrant_versions.each do |version| proxy "/download-archive/v#{version}.html", "/download-archive-single.html", locals: { version: version }, ignore: true end set :css_dir, 'stylesheets' set :js_dir, 'javascripts' set :images_dir, 'images' # Use the RedCarpet Markdown engine set :markdown_engine, :redcarpet set :markdown, fenced_code_blocks: true, with_toc_data: true # Enable the blog and set the time zone so that post times appear # correctly. Time.zone = "America/Los_Angeles" activate :blog do |b| b.layout = "blog_post" b.permalink = ":title.html" b.prefix = "blog" end # Build-specific configuration configure :build do activate :asset_hash activate :minify_css activate :minify_javascript end
Version data entries
4 entries across 1 versions & 1 rubygems