publishing Paxover to Codeberg

This commit is contained in:
2023-01-12 20:00:00 +01:00
commit 690707f090
45 changed files with 1796 additions and 0 deletions

20
templates/index.html.twig Normal file
View File

@@ -0,0 +1,20 @@
{% extends 'partials/base.html.twig' %}
{% set hero_image = page.media.images|first %}
{% block content %}
<div class="profile">
<img class="img-profile" src="{{ hero_image.url|raw }}" />
</div>
<div class="about">
{{ page.content | raw }}
</div>
<div class="social">
{% for button in theme_config.social_buttons %}
<a class="btn {{ button.class }}" target="_blank" rel="me nofollow noopener noreferrer" href="{{ button.link }}" title="{{ button.title }}">{{ button.name }}</a>
{% endfor %}
</div>
<div class="contact">
<p>{{ theme_config.contact|raw }}</p>
</div>
<p class="annotation"><a href="/en">Read this in english</a></p>
</div>
{% endblock %}