Implemented imprint dummy

This commit is contained in:
Kevin Frantz 2018-09-05 18:19:34 +02:00
parent cd9ad70bc2
commit 5e70b0cadb
2 changed files with 13 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class DefaultController extends AbstractController implements DefaultControllerI
*/
public function imprint(): Response
{
return new Response("Hello World!");
return $this->render("standard/imprint.html.twig",['menu_items'=>[]]);
}
/**

View File

@ -0,0 +1,12 @@
{% extends "frames/default.html.twig" %}
{% block title %}
Homepage
{% endblock %}
{% block content %}
<h2>
{% trans %}
Imprint
{% endtrans %}
</h2>
Developed by kevinfrantz
{% endblock %}