1
ewpratten.com/templates/video-timeline.html
Evan Pratten 66528d6284 Revert "The great migration"
This reverts commit f184e610368cedc50f9dd557953c83f70b55f329.
2024-11-14 12:45:30 -05:00

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