1
0
em.0x45.cz/templates/posts.html

16 lines
344 B
HTML
Raw Normal View History

2021-12-04 21:34:47 +01:00
{% extends "index.html" %}
{% block title %}
{{ section.title }} — {{ config.title }}
{% endblock %}
{% block content %}
<h1>{{ section.title }}</h1>
2025-01-10 09:49:43 +01:00
<input class="search" type="search" placeholder="Search">
2021-12-04 21:34:47 +01:00
{{ macros::list_posts() }}
{% endblock content %}
2021-12-04 22:05:33 +01:00
{% block script %}
2021-12-04 22:10:40 +01:00
<script src="/js/search.js"></script>
2021-12-04 22:05:33 +01:00
{% endblock %}