diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2024-03-29 11:20:49 +0000 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2024-05-26 16:05:32 +0100 |
commit | 0f6c06d3b37dbc277b211521a062223d96c540d0 (patch) | |
tree | 7b8dfe90b4c116028827186eaae5bd468e9fa406 /views | |
parent | 42fea055924bfa55991720f2f6b01ec111985200 (diff) |
Refactor instance description
Diffstat (limited to 'views')
-rwxr-xr-x | views/home.handlebars | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/views/home.handlebars b/views/home.handlebars index aa98823..0d294d3 100755 --- a/views/home.handlebars +++ b/views/home.handlebars @@ -1,8 +1,18 @@ <main class="page"> -<p class="lead text-center">Gathio is a simple, federated, privacy-first event hosting platform.</p> +<h2 class="mb-3 pb-2 text-center border-bottom">About {{siteName}}</h2> + +{{#if instanceDescription}} + <div class="instance-description mb-4"> + {{{instanceDescription}}} + </div> +{{/if}} {{> instanceRules }} +<h2 class="mb-3 mt-5 pb-2 text-center border-bottom">About Gathio</h2> + +<p class="lead text-center">Gathio is a simple, federated, privacy-first event hosting platform.</p> + <div id="example-event" class="text-center w-100 mt-4 mb-5"> <img alt ="An example event page for a picnic. The page shows the event's location, host, date and time, and description, as well as buttons to save the event to Google Calendar, export it, and open the location in OpenStreetMap and Google Maps." src="images/example-event-2023.png" class="img-fluid w-75 mx-auto shadow-lg rounded"> </div> |