-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update config to use more standard Jekyll settings
- Added feed and sitemap plugins. - Added variables for 3rd-party tool versions.
- Loading branch information
Michael DuBelko
committed
Jul 18, 2019
1 parent
8619201
commit 2a00255
Showing
1 changed file
with
27 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" |