|
|
@@ -7,33 +7,36 @@
|
|
|
{% set page = data %}
|
|
|
{% endif %}
|
|
|
|
|
|
-<li class="page-list-li">
|
|
|
- <div class="picture-outer">
|
|
|
- <img src="{{ page.revision.author|picture }}" class="picture picture-rounded">
|
|
|
- </div>
|
|
|
- <div class="page-link-outer">
|
|
|
- <a class="page-list-link" href="{{ page.path }}"
|
|
|
- data-path="{{ page.path }}"
|
|
|
- data-short-path="{{ page.path|path2name }}">{{ page.path }}</a>
|
|
|
+<li>
|
|
|
+ <img src="{{ page.revision.author|picture }}" class="picture picture-rounded">
|
|
|
+ <a href="{{ page.path }}"
|
|
|
+ class="page-list-link"
|
|
|
+ data-path="{{ page.path }}"
|
|
|
+ data-short-path="{{ page.path|path2name }}">{{ page.path }}
|
|
|
+ </a>
|
|
|
+ <span class="page-list-meta">
|
|
|
+ {% if page.isPortal() %}
|
|
|
+ <span class="label label-info">PORTAL</span>
|
|
|
+ {% endif %}
|
|
|
|
|
|
- <span class="page-list-meta">
|
|
|
- {% if page.isPortal() %}
|
|
|
- <span class="label label-info">PORTAL</span>
|
|
|
- {% endif %}
|
|
|
-
|
|
|
- {% if page.commentCount > 0 %}
|
|
|
- <i class="fa fa-comment"></i>{{ page.commentCount }}
|
|
|
- {% endif %}
|
|
|
+ {% if page.commentCount > 0 %}
|
|
|
+ <span>
|
|
|
+ <i class="fa fa-comment"></i>{{ page.commentCount }}
|
|
|
+ </span>
|
|
|
+ {% endif %}
|
|
|
|
|
|
- {% if page.liker.length > 0 %}
|
|
|
- <i class="fa fa-thumbs-up"></i>{{ page.liker.length }}
|
|
|
- {% endif %}
|
|
|
+ {% if page.liker.length > 0 %}
|
|
|
+ <span>
|
|
|
+ <i class="fa fa-thumbs-up"></i>{{ page.liker.length }}
|
|
|
+ </span>
|
|
|
+ {% endif %}
|
|
|
|
|
|
- {% if !page.isPublic() %}
|
|
|
- <i class="fa fa-lock"></i>
|
|
|
- {% endif %}
|
|
|
+ {% if !page.isPublic() %}
|
|
|
+ <span>
|
|
|
+ <i class="fa fa-lock"></i>
|
|
|
</span>
|
|
|
- </div>
|
|
|
+ {% endif %}
|
|
|
+ </span>
|
|
|
</li>
|
|
|
{% endfor %}
|
|
|
</ul>
|