You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% extends "layouts/default.twig" %}
-
- {% block content %}
- {% if posts.paginated %}
- <h1>${ "Search results for “%s”" | translate | format(search | escape) }</h1>
- {% endif %}
- {% for post in posts.paginated %}
- {% include "feathers/" ~ post.feather ~ ".twig" %}
- {% else %}
- <h1>${ "No Results" | translate }</h1>
- <p>${ "Your search did not return any results." | translate }</p>
- {% endfor %}
- {% endblock %}
|