initial upload

This commit is contained in:
kasiandra 2025-04-04 14:22:58 +02:00
parent d1a9f154b9
commit 595c75a9fb
6 changed files with 57 additions and 0 deletions

32
templates/index.html Normal file
View file

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{% block title %}{{ config.title }}{% endblock title %}</title>
<link rel='stylesheet' href='/style.css' type='text/css' >
</head>
<body>
<div class="container">
<div class="header">
<p>Here comes the banner</p>
</div>
<div class="content">
<div class="content-social">
{% if config.extra.social %}
{% for links in config.extra.social %}
<a href="{{ links.link }}"><img src="/img/{{ links.icon }}.svg"alt="Socialmedia Icon for {{links.icon}}" style="width: 25px; filter: invert(75%)"</img></a><a> {{ links.title }}<br>
{% endfor %}
{% endif %}
</div>
<p>Content comes here</p>
</div>
<div class="footer">
<div class="copyleft">
{% for footer in config.extra.footer %}
<a2 class="footercopyzola">{{ footer.zola }}</a2>
<a2 class="footercopyleft">by {{ footer.copyleft }}</a2>
{% endfor %}
</div>
</div>
</div>
</body>