Created
February 6, 2020 13:14
-
-
Save MarioBlazek/fe08aba625e4da83340176a2260bc747 to your computer and use it in GitHub Desktop.
app/Resources/views/themes/standard/default/content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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