Merge 39e7db13b6db9663bd1970200f1d2aee8b6c9da3 into 56c0c566dcdde20bd14987c621e4ffda17ceb53d

This commit is contained in:
Evan Sonderegger 2017-04-12 03:30:55 +00:00 committed by GitHub
commit e9bcfab1f1
2 changed files with 2 additions and 2 deletions

View File

@ -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>
```

View File

@ -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 %}