receptty.org/templates/search.html

19 lines
484 B
HTML
Raw Normal View History

2021-02-02 21:46:24 +01:00
{% extends "index.html" %}
{% block content %}
<main>
2021-02-02 21:46:24 +01:00
<h2>Hledání a filtry</h2>
<div class="filters">
<input type="text" id="name" placeholder="Název">
<input type="text" id="name" placeholder="Název">
<input type="text" id="name" placeholder="Název">
</div>
<section class="list">
2021-02-02 22:01:42 +01:00
{% set section = get_section(path="_index.md") %}
{% for page in section.pages %}
{{ macro::print_recipe(recipe=page) }}
{% endfor %}
</section>
</main>
{% endblock content %}