Compare commits

...

2 Commits

Author SHA1 Message Date
819f46a417 footerdiv
All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 32s
2025-08-24 16:05:41 +02:00
7926c1b745 footer 2025-08-24 16:05:27 +02:00
3 changed files with 11 additions and 1 deletions

View File

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

View File

@@ -15,7 +15,7 @@
<nav>
{% 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 }}
</a>
{% endfor %}

View File

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