{% extends "index.html" %}

{% block title %}
	{{ section.title }} — {{ config.title }}
{% endblock %}

{% block content %}
	<h1>{{ section.title }}</h1>
	<input id="search" class="search" type="text" placeholder="Search titles" oninput="filter_name(this.value)">
	{{ macros::list_posts() }}
{% endblock content %}

{% block script %}
	<script src="/js/search.js"></script>
{% endblock %}