This commit is contained in:
2025-08-24 16:05:27 +02:00
parent 4bd53380d9
commit 7926c1b745
3 changed files with 9 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
<footer> <footer>
<div class="footerdiv">
<ul class="mylinks"> <ul class="mylinks">
{% for link in site.data.links %} {% for link in site.data.links %}
<li> <li>
@@ -22,6 +23,7 @@
<img src="{{ button.path }}"> <img src="{{ button.path }}">
{% endif %} {% endif %}
{% endfor %} {% endfor %}
</div>
</footer> </footer>

View File

@@ -15,7 +15,7 @@
<nav> <nav>
{% for item in site.data.navigation %} {% for item in site.data.navigation %}
<a href="{{ iten.link }}" {% if page.url == item.link %}style="color: red;"{% endif %}> <a class="navlink" href="{{ iten.link }}" {% if page.url == item.link %}style="color: red;"{% endif %}>
{{ item.name }} {{ item.name }}
</a> </a>
{% endfor %} {% endfor %}

View File

@@ -150,12 +150,18 @@ body {
.container { .container {
display: flex; display: flex;
justify-content: center;
} }
nav { nav {
border: green; border: green;
border-style: double; border-style: double;
} }
.navlink {
}
.content { .content {
border: green; border: green;
border-style: double; border-style: double;