mirror of
https://github.com/lektor/lektor-website.git
synced 2025-04-03 00:45:37 +02:00
closing tags on urls page
This commit is contained in:
parent
1e7c0998a4
commit
72b1216fed
6
content/docs/templates/urls/contents.lr
vendored
6
content/docs/templates/urls/contents.lr
vendored
@ -27,8 +27,8 @@ Because the path starts with a slash it will be treated as absolute path:
|
||||
|
||||
```html+jinja
|
||||
<ul class="nav">
|
||||
<li><a href="{{ '/'|url }}">Index</a>
|
||||
<li><a href="{{ '/about'|url }}">About</a>
|
||||
<li><a href="{{ '/'|url }}">Index</a></li>
|
||||
<li><a href="{{ '/about'|url }}">About</a></li>
|
||||
</ul>
|
||||
```
|
||||
|
||||
@ -59,7 +59,7 @@ link to all children of a page:
|
||||
```html+jinja
|
||||
<ul class="nav">
|
||||
{% for page in this.children %}
|
||||
<li><a href="{{ page|url }}">{{ page.title }}</a>
|
||||
<li><a href="{{ page|url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user