Skip to content

Instantly share code, notes, and snippets.

@MarioBlazek
Created February 6, 2020 13:14
Show Gist options
  • Save MarioBlazek/fe08aba625e4da83340176a2260bc747 to your computer and use it in GitHub Desktop.
Save MarioBlazek/fe08aba625e4da83340176a2260bc747 to your computer and use it in GitHub Desktop.
app/Resources/views/themes/standard/default/content
{% extends '@ezdesign/pagelayout.html.twig' %}
{% block content %}
<h1>TheCatAPI - Cats as a Service, Everyday is Caturday.</h1>
<h3>Available categories</h3>
{% if categories|length > 0 %}
<ul>
{% for category in categories %}
<li>ID: {{ category.id }} name: <strong>{{ category.name }}</strong></li>
{% endfor %}
</ul>
{% else %}
<p>There is no available categories.</p>
{% endif %}
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment