add style and images

This commit is contained in:
kasiandra 2025-04-05 07:42:36 +02:00
parent 595c75a9fb
commit 7869889bb1
12 changed files with 169 additions and 2 deletions

View file

@ -5,16 +5,24 @@
<title>{% block title %}{{ config.title }}{% endblock title %}</title>
<link rel='stylesheet' href='/style.css' type='text/css' >
</head>
<body>
<div class="container">
<body style="background-image: url({{ config.extra.backgroundimage }})">
<div class="container" style="background: {{ config.extra.backgroundcolor}}; box-shadow: inset 0 0 2000px {{ config.extra.backgroundcolor }}">
<div class="header">
<p>Here comes the banner</p>
</div>
<div class="content">
<div class="content-social">
<div class="content-social-profile">
<img src="/img/profile.png">
</div>
<div class="content-social-name">
<p>{{ config.extra.name }}</p>
</div>
{% if config.extra.social %}
{% for links in config.extra.social %}
<div class="content-social-{{ links.title }}">
<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>
</div>
{% endfor %}
{% endif %}
</div>