mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-09 06:01:35 +01:00
Implemented imprint dummy
This commit is contained in:
parent
cd9ad70bc2
commit
5e70b0cadb
@ -19,7 +19,7 @@ class DefaultController extends AbstractController implements DefaultControllerI
|
|||||||
*/
|
*/
|
||||||
public function imprint(): Response
|
public function imprint(): Response
|
||||||
{
|
{
|
||||||
return new Response("Hello World!");
|
return $this->render("standard/imprint.html.twig",['menu_items'=>[]]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
12
application/templates/standard/imprint.html.twig
Normal file
12
application/templates/standard/imprint.html.twig
Normal 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 %}
|
Loading…
Reference in New Issue
Block a user