29 lines
753 B
HTML
29 lines
753 B
HTML
{% extends "base.html" %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
{{super()}}
|
|
|
|
{% for page in section.pages %}
|
|
{% if not page.extra.hidden %}
|
|
|
|
<a href="{{page.path | safe}}" style="color:black !important;">
|
|
{% if page.extra.cover_img %}
|
|
<img src="{{page.extra.cover_img | safe}}" alt="{{page.title}}" style="width:100%;" loading="lazy">
|
|
{% else %}
|
|
<img src="https://img.youtube.com/vi/{{page.extra.cover_video.youtube}}/mqdefault.jpg" alt="{{page.title}}"
|
|
style="width:100%;" loading="lazy">
|
|
{% endif %}
|
|
<div style="display:flex;justify-content:space-between;">
|
|
<span><strong>{{page.title}}</strong></span>
|
|
<span class="gray">{{page.date}}</span>
|
|
</div>
|
|
</a>
|
|
<br>
|
|
<br>
|
|
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% endblock content %} |