{% extends 'layout.html' %} {# Set variables for base layour #} {% set active_page = 'search' %} {% set title = 'Search' %} {% block content %}
{% for post in results %}
{% if post.link and post.link|length > 0 %} {{ post.title }} {% else %} {{ post.title }} {% endif %}
{% endfor %} {# Add once I'll have fulltext search
More
#}
{% endblock %}