2017-09-27 14:37:17 +00:00
|
|
|
+++
|
|
|
|
title = "Overview"
|
|
|
|
weight = 10
|
|
|
|
+++
|
|
|
|
|
2017-10-19 14:04:47 +00:00
|
|
|
Gutenberg uses the [Tera](https://tera.netlify.com) template engine and is very similar
|
2017-10-19 11:48:50 +00:00
|
|
|
to Jinja2, Liquid or Twig.
|
|
|
|
|
|
|
|
As this documentation will only talk about how templates work in Gutenberg, please read
|
2017-09-27 14:37:17 +00:00
|
|
|
the [Tera template documentation](https://tera.netlify.com/docs/templates/) if you want
|
2017-10-19 11:48:50 +00:00
|
|
|
to learn more about it first.
|
2017-09-27 14:37:17 +00:00
|
|
|
|
|
|
|
All templates live in the `templates` directory and built-in or themes templates can
|
|
|
|
be overriden by creating a template with same name in the correct path. For example,
|
|
|
|
you can override the RSS template by creating a `templates/rss.xml` file.
|
|
|
|
|
2017-10-19 11:48:50 +00:00
|
|
|
If you are not sure what variables are available in a template, you can just stick `{{ __tera_context }}` in it
|
2017-09-27 14:37:17 +00:00
|
|
|
to print the whole context.
|
|
|
|
|
2017-10-19 11:48:50 +00:00
|
|
|
A few variables are available on all templates minus RSS and sitemap:
|
2017-09-27 14:37:17 +00:00
|
|
|
|
|
|
|
- `config`: the [configuration](./documentation/getting-started/configuration.md) without any modifications
|
2017-10-19 11:48:50 +00:00
|
|
|
- `current_path`: the path (full URL without the `base_url`) of the current page, never starting with a `/`
|
2017-09-27 14:37:17 +00:00
|
|
|
- `current_url`: the full URL for that page
|
|
|
|
|
|
|
|
## Built-in filters
|
|
|
|
Gutenberg adds a few filters, in addition of the ones already present in Tera.
|
|
|
|
|
|
|
|
### markdown
|
|
|
|
Converts the given variable to HTML using Markdown. This doesn't apply any of the
|
|
|
|
features that Gutenberg adds to Markdown: internal links, shortcodes etc won't work.
|
|
|
|
|
|
|
|
### base64_encode
|
|
|
|
Encode the variable to base64.
|
|
|
|
|
|
|
|
### base64_decode
|
|
|
|
Decode the variable from base64.
|
|
|
|
|
|
|
|
|
|
|
|
## Built-in global functions
|
|
|
|
Gutenberg adds a few global functions to Tera in order to make it easier to develop complex sites.
|
|
|
|
|
|
|
|
### `get_page`
|
|
|
|
Takes a path to a `.md` file and returns the associated page
|
|
|
|
|
|
|
|
```jinja2
|
|
|
|
{% set page = get_page(path="blog/page2.md") %}
|
|
|
|
```
|
|
|
|
|
|
|
|
### `get_section`
|
|
|
|
Takes a path to a `_index.md` file and returns the associated section
|
|
|
|
|
|
|
|
```jinja2
|
|
|
|
{% set section = get_page(path="blog/_index.md") %}
|
|
|
|
```
|
|
|
|
|
2017-10-22 11:16:25 +00:00
|
|
|
### ` get_url`
|
2017-09-27 14:37:17 +00:00
|
|
|
Gets the permalink for the given path.
|
|
|
|
If the path starts with `./`, it will be understood as an internal
|
|
|
|
link like the ones used in markdown.
|
|
|
|
|
|
|
|
```jinja2
|
|
|
|
{% set url = get_url(path="./blog/_index.md") %}
|
|
|
|
```
|
|
|
|
|
|
|
|
This can also be used to get the permalinks for static assets for example if
|
|
|
|
we want to link to the file that is located at `static/css/app.css`:
|
|
|
|
|
|
|
|
```jinja2
|
|
|
|
{{ get_url(path="css/app.css") }}
|
|
|
|
```
|
|
|
|
|
2017-11-10 16:46:14 +00:00
|
|
|
For assets it is reccommended that you pass `trailing_slash=false` to the `get_url` function. This prevents errors
|
|
|
|
when dealing with certain hosting providers. An example is:
|
|
|
|
|
|
|
|
```jinja2
|
|
|
|
{{ get_url(path="css/app.css", trailing_slash=false) }}
|
|
|
|
```
|
|
|
|
|
2017-09-27 14:37:17 +00:00
|
|
|
In the case of non-internal links, you can also add a cachebust of the format `?t=1290192` at the end of a URL
|
|
|
|
by passing `cachebust=true` to the `get_url` function.
|
2017-11-16 17:08:06 +00:00
|
|
|
|
|
|
|
|
2018-01-16 12:57:31 +00:00
|
|
|
### `get_taxonomy_url`
|
2017-11-16 17:08:06 +00:00
|
|
|
Gets the permalink for the tag or category given.
|
|
|
|
|
|
|
|
```jinja2
|
|
|
|
{% set url = get_taxonomy_url(kind="category", name=page.category) %}
|
|
|
|
```
|
|
|
|
|
|
|
|
The `name` will almost come from a variable but in case you want to do it manually,
|
|
|
|
the value should be the same as the one in the front-matter, not the slugified version.
|
2018-01-16 12:57:31 +00:00
|
|
|
|
|
|
|
### `trans`
|
|
|
|
Gets the translation of the given `key`, for the `default_language` or the `language given
|
|
|
|
|
|
|
|
```jinja2
|
|
|
|
{{ trans(key="title") }}
|
|
|
|
{{ trans(key="title", lang="fr") }}
|
|
|
|
```
|