12 lines
337 B
HTML
12 lines
337 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block content %}
|
|
<h1>{{ term.name }} category</h1>
|
|
<input id="search" class="search" type="text" placeholder="Search titles" oninput="filter_name(this.value)">
|
|
{{ macros::list_posts(section=term, taxonomy=true) }}
|
|
{% endblock %}
|
|
|
|
{% block script %}
|
|
<script src="/js/search.js"></script>
|
|
{% endblock %}
|