docs: fix broken link [ci-skip]

This commit is contained in:
Frank Taillandier 2019-08-17 22:54:58 +02:00
parent 759315bfa3
commit 45f5facbed
1 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,7 @@ braces: {% raw %}`{{`{% endraw %} and {% raw %}`}}`{% endraw %}. For example:
{% raw %} {% raw %}
```liquid ```liquid
{{ page.title }} {{ page.title }}
``` ```
{% endraw %} {% endraw %}
Outputs a variable called `page.title` on the page. Outputs a variable called `page.title` on the page.
@ -34,7 +34,7 @@ braces and percent signs: {% raw %}`{%`{% endraw %} and
sidebar content sidebar content
</div> </div>
{% endif %} {% endif %}
``` ```
{% endraw %} {% endraw %}
Outputs the sidebar if `page.show_sidebar` is true. You can learn more about the Outputs the sidebar if `page.show_sidebar` is true. You can learn more about the
@ -48,7 +48,7 @@ and are separated by a `|`. For example:
{% raw %} {% raw %}
```liquid ```liquid
{{ "hi" | capitalize }} {{ "hi" | capitalize }}
``` ```
{% endraw %} {% endraw %}
Outputs `Hi`. You can learn more about the filters available to Jekyll Outputs `Hi`. You can learn more about the filters available to Jekyll
@ -63,10 +63,10 @@ Now it's your turn, change the Hello World! on your page to output as lowercase:
... ...
<h1>{{ "Hello World!" | downcase }}</h1> <h1>{{ "Hello World!" | downcase }}</h1>
... ...
``` ```
{% endraw %} {% endraw %}
To get our changes processed by Jekyll we need to add [front matter](03-front-matter/) to the top of the page: To get our changes processed by Jekyll we need to add [front matter](../03-front-matter/) to the top of the page:
```markdown ```markdown
--- ---