From dc0f99ea3b4837c52e87fcc5c74aed2cc4808ec0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 28 Jul 2021 09:54:18 +0200 Subject: [PATCH] Add about template --- Resources/views/default/about.html.twig | 50 +++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 Resources/views/default/about.html.twig diff --git a/Resources/views/default/about.html.twig b/Resources/views/default/about.html.twig new file mode 100644 index 0000000..0e8b341 --- /dev/null +++ b/Resources/views/default/about.html.twig @@ -0,0 +1,50 @@ +{% extends '@RapsysAir/body.html.twig' %} +{% block content %} +
+
+

{{ page.title }}

+

{{ page.description }}

+
+ +
+

{% trans %}About Libre Air{% endtrans %}

+

{{ '%title%, an information site for outdoor dancers and organizers.'|trans({'%title%': '' ~ site.title ~ ''})|raw }}

+
+
+

{% trans %}Our mission{% endtrans %}

+

{{ '%title%\'s mission is simple: provide dancers with the information they need to easily find organizers dance sessions.'|trans({'%title%': '' ~ site.title ~ ''})|raw }}

+

{% trans %}If it's an outdoor place we want to document it.{% endtrans %}

+ {#

{{ site.title }}{% trans %}, an information site for outdoor dancers and organizers.{% endtrans %}

#} +
+
+

{% trans %}How you can help{% endtrans %}

+

{% trans %}Our community is composed of amazing dancers all around the world who participate, review dance session and help us promote them.{% endtrans %}

+

{{ 'However, you don\'t need to be a professional dancer or organizer to help %title%!'|trans({'%title%': '' ~ site.title ~ ''})|raw }}

+

{{ 'Donate on %title% to help us fund our mission.'|trans({'%title%': '' ~ 'our donation page'|trans ~ ''})|raw }}

+
+
+

{% trans %}History of Libre Air{% endtrans %}

+ {#

{% trans %}Our community is composed of amazing dancers all around the world who participate, review dance session and help us promote them.{% endtrans %}

+

{{ 'However, you don\'t need to be a professional dancer or organizer to help %title%!'|trans({'%title%': '' ~ site.title ~ ''})|raw }}

+

{{ 'Donate on %title% to help us fund our mission.'|trans({'%title%': '' ~ 'our donation page'|trans ~ ''})|raw }}

#} + +

{{ 'The %title% project started in 2019 when the need for a new dispatch platform for outdoor dance events arose.'|trans({'%title%': '' ~ site.title ~ ''})|raw }}

+

{% trans %}Since then the project has grown and now forms a central point for broadcasting outdoor dance events from different organizers.{% endtrans %}

+

{{ 'In the future, %title% hopes to become a daily visited resource for participants and organizers of outdoor dance sessions.'|trans({'%title%': '' ~ site.title ~ ''})|raw }}

+
+
+

{% trans %}Technical support{% endtrans %}

+

{{ 'The development and hosting services are graciously provided by: %title%'|trans({'%title%': '' ~ copy.by ~ ''})|raw }}

+

{{ 'In case of bug or glitch you may contact us throught the contact form: %title%'|trans({'%title%': '' ~ 'Contact'|trans ~ ''})|raw }}

+
+
+{% endblock %} -- 2.41.0