Listed all options

This commit is contained in:
Kevin Frantz
2018-07-14 19:26:55 +02:00
parent 5c5eb64fd8
commit f938f70e78
3 changed files with 60 additions and 4 deletions

View File

@@ -1,3 +1,13 @@
{% extends "frames/default.html.twig" %}
{% block title %}Homepage{% endblock %}
{% block content %}Welcome to the online shop ;){% endblock %}
{% block content %}
<h2>Welcome to the online shop!</h2>
You have the following options:
<ul>
{% for option in options %}
<li>
<a href="{{option.getUrl}}">{{option.getName}}</a>
</li>
{% endfor %}
</ul>
{% endblock %}