{% extends "layout.html" %} {%block title %} Homepage {%endblock title %} {%block content %}
{% include 'sidebar.html' %}
{% for item in items %} {% if 'detail' in item.field.visibility %}
{{item.field.column | capfirst }}
{{item.value}}
{% endif %} {% endfor %}
{% include 'footer.html' %}
{%endblock content %}