KXStudio Website https://kx.studio/
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.

14 lines
574B

  1. {% extends "layouts/default.twig" %}
  2. {% block content %}
  3. {% if posts.paginated %}
  4. <h1>${ "Search results for &#8220;%s&#8221;" | translate | format(search | escape) }</h1>
  5. {% endif %}
  6. {% for post in posts.paginated %}
  7. {% include "feathers/" ~ post.feather ~ ".twig" %}
  8. {% else %}
  9. <h1>${ "No Results" | translate }</h1>
  10. <p>${ "Your search did not return any results." | translate }</p>
  11. {% endfor %}
  12. {% endblock %}