Summary
This is the TakeShape static site generator.
tsg.yml
Configuration Options
templatePath: src/templates
staticPath: static
buildPath: build
locale: en-us
dates:
tz: America/New_York
format: LLL
context:
assets: ../../static/assets/manifest.json
[KEY]: [VALUE]
...
routes:
homepage:
path: /
template: pages/homepage.html
context: data/homepage.graphql
...
htmlCompression:
enabled: false
options:
Templating
TS uses the Nunjucks templating language. You can find detailed documentation on the Nunjucks site:
(https://mozilla.github.io/nunjucks/templating.html
TS specific Nunjucks Filters
route(routeName: String)
{{ post | route('posts') }}
Returns a relative path to a piece of content as defined by the routes in tsg.yml
. The input Object must have the
necessary fields specified in the route path in order to construct the path properly.md
{{ markdown | md }}
Markdown to safe HTML using the CommonMark spec http://commonmark.org/numberFormat(format: String)
{{ numberField | numberformat(',.2r') }}
# grouped thousands with two significant digits, 4200 -> "4,200"
Returns a number formatted according to the the format specifier string https://github.com/d3/d3-formatcode(language: String)
{{ codeField | code('javascript') }}
Uses prism.js to return an HTML representation of the highlighted code. Takes an optional
language string. You will need to manually include the corresponding
CSS in your project.image(params: Object)
{{ imageField | image({w: 320, h: 240, q: 90, crop: 'faces'}) }}
Returns an imgix ready url. Takes an object of keys and values for any imgix filter https://docs.imgix.com/apis/urldate(format: String|Object)
{{ date | date('MMM Do YYYY') }}
{{ date | date({format: 'MMM Do YYYY', tz: 'America/Los_Angeles') }}
{{ date | date({format: 'LLL', tz: 'America/Los_Angeles', locale: 'fr') }}
Formats dates using moment.js. format
can be either a
format string or an object where you can specify a format and
override the default timezone and locale (configured in tsg.yml
).
Configuring Block Canvas imgix settings via tsg.yml
Similarly to how the Nunjucks image filter allows you to apply imgix settings by specifying an object of keys and
values, TS also allows you to apply these same settings to images within block canvas
elements using the tsg.yml
configuration.
Imgix settings are applied per route using the following syntax:
---
routes:
homepage:
path: /
template: pages/homepage.html
context:
query: data/homepage.graphql
variables:
imageConfig:
w: 500
h: 500
Then, wherever you make your GraphQL query, ensure that the imageConfig variable is passed to the block canvas Html
query:
query($imageConfig: JSON){
home {
blockCanvasHtml(imageConfig: $imageConfig)
}
}
Imgix settings objects may be defined once and reused in multiple routes in tsg.yml
using YAML anchors
:
---
smallImageConfig: &smallImageConfig
w: 25
h: 25
largeImageConfig: &largeImageConfig
w: 500
h: 500
routes:
homepage:
path: /
template: pages/homepage.html
context:
query: data/homepage.graphql
variables:
imageConfig:
<<: *smallImageConfig
about:
path: /
template: pages/about.html
context:
query: data/about.graphql
variables:
imageConfig:
<<: *smallImageConfig
gallery:
path: /
template: pages/gallery.html
context:
query: data/gallery.graphql
variables:
imageConfig:
<<: *largeImageConfig
Html Compression
TS uses Minimize, a highly configurable, well-tested, JavaScript-based HTML minifier. You can find detailed
documentation on the Minimize site.
Options
All options listed in the Options section of the Minimize site may be
set:
Example
in tsg.yml
:
htmlCompression:
enabled: true
options:
empty: true
comments: true