From 2a002550557f4e26cc442480063894e149fd943e Mon Sep 17 00:00:00 2001 From: Michael DuBelko Date: Thu, 18 Jul 2019 11:55:43 -0700 Subject: [PATCH] Update config to use more standard Jekyll settings - Added feed and sitemap plugins. - Added variables for 3rd-party tool versions. --- _config.yml | 38 +++++++++++++++++++++++++++----------- 1 file changed, 27 insertions(+), 11 deletions(-) diff --git a/_config.yml b/_config.yml index babaa9b..9e643a8 100644 --- a/_config.yml +++ b/_config.yml @@ -1,13 +1,29 @@ -paginate: 1 -permalink: /news/:title/ +title: Gaffer +description: >- + Gaffer is an open-source, node-based 3D and 2D processing and + automation tool for use in VFX. It supports the Alembic, USD, and SCC + scene formats, and all image formats supported by OpenImageIO, + including EXR. Its scenes are compatible with VDBs and the Arnold, + Appleseed, and 3Delight renderers. +encoding: utf-8 baseurl: -future: false -google_analytics: UA-125947352-1 -gems: - - jekyll-paginate +url: "http://gafferhq.org" +permalink: /news/:title/ # Base URL for all posts +paginate: 10 # How many posts to show on each news page +paginate_path: "/news/archive:num/" # Base URL for post archives + +plugins: + - jekyll-feed + - jekyll-paginate + - jekyll-sitemap + +# Site variables +google-analytics: UA-125947352-1 +images: /content/images +examples: /content/examples +latest-release: 0.53.4.0 +arnold-version: 5.3 +delight-version: 1.1.12 +tractor-version: 2.2 +appleseed-version: 1.9.0 -latestGafferVersion: 0.53.4.0 -copyrightYear: 2019 -images: "/resources/images" -demos: "/resources/demos" -docs: "https://www.gafferhq.org/documentation"