27 lines
751 B
HTML
27 lines
751 B
HTML
|
|
{% extends "pathed_content.html" %}
|
|
|
|
{%block content_article%}
|
|
{{ include('fragments/directory/inline.html') }}
|
|
|
|
{{ content_html|raw }}
|
|
|
|
{% if search_results|length > 0 %}
|
|
<ul class="gallery">
|
|
{% for post in search_results %}
|
|
<li class="entry">
|
|
<a href={{post.path}}>
|
|
<figure>
|
|
<img src="{{post.media_preview_url}}">
|
|
<figcaption>
|
|
{{ post.title }}
|
|
</figcaption>
|
|
</figure>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{%else%}
|
|
<h4>How sad. There are no images yet... What a real shame :c </h4>
|
|
{% endif %}
|
|
{%endblock%}
|