mirror of
https://github.com/lektor/lektor-website.git
synced 2025-04-03 00:45:37 +02:00
Merge 39e7db13b6db9663bd1970200f1d2aee8b6c9da3 into 56c0c566dcdde20bd14987c621e4ffda17ceb53d
This commit is contained in:
commit
e9bcfab1f1
2
content/docs/templates/imageops/contents.lr
vendored
2
content/docs/templates/imageops/contents.lr
vendored
@ -51,7 +51,7 @@ Here an example that shows the camera information:
|
||||
```html+jinja
|
||||
<div class="image">
|
||||
<img src="{{ image|url }}" alt="">
|
||||
<p><strong>Camera:</strong> {{ image.exif.camera }}
|
||||
<p><strong>Camera:</strong> {{ image.exif.camera }}</p>
|
||||
</div>
|
||||
```
|
||||
|
||||
|
@ -71,7 +71,7 @@ the recursive Jinja loop system comes really in.
|
||||
{% set root = site.get('/') %}
|
||||
{% for child in root.children recursive %}
|
||||
<li{% if this._path == child._path %} class="active"{% endif
|
||||
%}><a href="{{ child|url }}">{{ child.title }}</a>
|
||||
%}><a href="{{ child|url }}">{{ child.title }}</a></li>
|
||||
{% if this.is_child_of(child) %}
|
||||
<ul>{{ loop(child.children) }}</ul>
|
||||
{% endif %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user