1
0
em.0x45.cz/templates/posts.html
Emil Miler b851a127c7 Improve search
This new approach makes sure the input field is hidden on browsers which
ignore `display:none`, such as w3m or lynx.
2025-05-14 14:51:49 +02:00

16 lines
321 B
HTML

{% extends "index.html" %}
{% block title %}
{{ section.title }} — {{ config.title }}
{% endblock %}
{% block content %}
<h1>{{ section.title }}</h1>
<div class="search-wrapper"></div>
{{ macros::list_posts() }}
{% endblock content %}
{% block script %}
<script src="/js/search.js"></script>
{% endblock %}