Skip to content

Commit 59c5d8e

Browse files
oscard0mDrodt
authored andcommitted
docs: update links to new Tera docs URL (getzola#2289)
More context here: Keats/tera#854 (comment)
1 parent 30b294b commit 59c5d8e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

docs/content/documentation/content/shortcodes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The latter may also be solved by writing HTML, however Zola allows the use of Ma
1616
rather than `.html`. This may be particularly useful if you want to include headings generated by the shortcode in the
1717
[table of contents](@/documentation/content/table-of-contents.md).
1818

19-
If you want to use something similar to shortcodes in your templates, you can use [Tera macros](https://tera.netlify.com/docs#macros). They are functions or components that you can call to return some text.
19+
If you want to use something similar to shortcodes in your templates, you can use [Tera macros](https://keats.github.io/tera/docs#macros). They are functions or components that you can call to return some text.
2020

2121
## Writing a shortcode
2222
Let's write a shortcode to embed YouTube videos as an example.

docs/content/documentation/getting-started/directory-structure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ If your static files are large, you can configure Zola to [hard link](https://en
4444
instead of copying them by setting `hard_link_static = true` in the config file.
4545

4646
## `templates`
47-
Contains all the [Tera](https://tera.netlify.com) templates that will be used to render your site.
47+
Contains all the [Tera](https://keats.github.io/tera) templates that will be used to render your site.
4848
Have a look at the [templates documentation](@/documentation/templates/_index.md) to learn more about default templates
4949
and available variables.
5050

docs/content/documentation/getting-started/overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight = 5
55

66
## Zola at a Glance
77

8-
Zola is a static site generator (SSG), similar to [Hugo](https://gohugo.io/), [Pelican](https://blog.getpelican.com/), and [Jekyll](https://jekyllrb.com/) (for a comprehensive list of SSGs, please see [Jamstack](https://jamstack.org/generators)). It is written in [Rust](https://www.rust-lang.org/) and uses the [Tera](https://tera.netlify.com/) template engine, which is similar to [Jinja2](https://jinja.palletsprojects.com/en/2.10.x/), [Django templates](https://docs.djangoproject.com/en/2.2/topics/templates/), [Liquid](https://shopify.github.io/liquid/), and [Twig](https://twig.symfony.com/).
8+
Zola is a static site generator (SSG), similar to [Hugo](https://gohugo.io/), [Pelican](https://blog.getpelican.com/), and [Jekyll](https://jekyllrb.com/) (for a comprehensive list of SSGs, please see [Jamstack](https://jamstack.org/generators)). It is written in [Rust](https://www.rust-lang.org/) and uses the [Tera](https://keats.github.io/tera/) template engine, which is similar to [Jinja2](https://jinja.palletsprojects.com/en/2.10.x/), [Django templates](https://docs.djangoproject.com/en/2.2/topics/templates/), [Liquid](https://shopify.github.io/liquid/), and [Twig](https://twig.symfony.com/).
99

1010
Content is written in [CommonMark](https://commonmark.org/), a strongly defined, highly compatible specification of [Markdown](https://www.markdownguide.org/). Zola uses [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark#pulldown-cmark) to parse markdown files. The goal of this library is 100% compliance with the CommonMark spec. It adds a few additional features such as parsing footnotes, Github flavored tables, Github flavored task lists and strikethrough.
1111

docs/content/documentation/templates/overview.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title = "Overview"
33
weight = 10
44
+++
55

6-
Zola uses the [Tera](https://tera.netlify.com) template engine, which is very similar
6+
Zola uses the [Tera](https://keats.github.io/tera) template engine, which is very similar
77
to Jinja2, Liquid and Twig.
88

99
As this documentation will only talk about how templates work in Zola, please read
@@ -62,7 +62,7 @@ Custom templates are not required to live at the root of your `templates` direct
6262
For example, `product_pages/with_pictures.html` is a valid template.
6363

6464
## Built-in filters
65-
Zola adds a few filters in addition to [those](https://tera.netlify.com/docs/#filters) already present
65+
Zola adds a few filters in addition to [those](https://keats.github.io/tera/docs/#filters) already present
6666
in Tera.
6767

6868
### markdown
@@ -113,7 +113,7 @@ To format a number for a specific locale, you can use the `locale` argument and
113113

114114
## Built-in functions
115115

116-
Zola adds a few Tera functions to [those built-in in Tera](https://tera.netlify.com/docs#built-in-functions)
116+
Zola adds a few Tera functions to [those built-in in Tera](https://keats.github.io/tera/docs#built-in-functions)
117117
to make it easier to develop complex sites.
118118

119119
### File searching logic

docs/content/documentation/themes/creating-a-theme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ weight = 30
44
+++
55

66
Creating a theme is exactly like creating a normal site with Zola, except you
7-
will want to use many [Tera blocks](https://tera.netlify.com/docs#inheritance) to
7+
will want to use many [Tera blocks](https://keats.github.io/tera/docs#inheritance) to
88
allow users to easily modify it.
99

1010
## Getting started

0 commit comments

Comments
 (0)