From e727f43fe0e17ccc9067e457667a7a7ee651e76d Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Sun, 20 Aug 2023 14:29:06 +0200 Subject: [PATCH] Fix link to tera --- docs/content/documentation/themes/extending-a-theme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/documentation/themes/extending-a-theme.md b/docs/content/documentation/themes/extending-a-theme.md index 3910c56822..b5c0d1229f 100644 --- a/docs/content/documentation/themes/extending-a-theme.md +++ b/docs/content/documentation/themes/extending-a-theme.md @@ -11,7 +11,7 @@ When your site uses a theme, the generated structure follows the theme's structu ## Overriding a block -If you don't want to replace a whole template, but override parts of it, you can [extend the template](https://tera.netlify.app/docs/#inheritance) and redefine some specific blocks. For example, if you want to override the `title` block in your theme's page.html, you can create a page.html file in your site templates with the following content: +If you don't want to replace a whole template, but override parts of it, you can [extend the template](https://keats.github.io/tera/docs/#inheritance) and redefine some specific blocks. For example, if you want to override the `title` block in your theme's page.html, you can create a page.html file in your site templates with the following content: ``` {% extends "theme_name/templates/page.html" %}