This commit is contained in:
WickedJack99
2022-09-26 01:31:29 +02:00
parent 8eb76fca65
commit c2f67afd80
23 changed files with 176 additions and 175 deletions

View File

@@ -1,5 +1,5 @@
<nav> |
<div id="navbarBottom" class="w3-bar w3-black"> |
{% for item in site.data.footerNavbar %}
<a href="{{ item.link }}" {% if page.url == item.link %} class="current" {% endif %}>{{ item.name }}</a> |
<a href="{{ item.link }}" {% if page.url == item.link %} class="current" {% endif %} class="w3-bar-item w3-button">{{ item.name }}</a> |
{% endfor %}
</nav>
</div>

View File

@@ -1,5 +1,8 @@
<div class="w3-bar w3-black">
<div id="navbarTop" class="w3-bar w3-black">
{% for item in site.data.navigation %}
<a href="{{ item.link }}" {% if page.url == item.link %} class="current" {% endif %} class="w3-bar-item w3-button">{{ item.name }}</a>
{% endfor %}
{% for item in site.data.socialMedia %}
<a href="{{ item.link }}" {% if page.url == item.link %} class="current" {% endif %} class="w3-bar-item w3-button w3-right">{{ item.icon }}</a>
{% endfor %}
</div>

View File

@@ -1,5 +0,0 @@
<nav>
{% for item in site.data.socialMedia %}
<a href="{{ item.link }}" {% if page.url == item.link %} class="current" {% endif %}>{{ item.icon }} {{ item.name }}</a>
{% endfor %}
</nav>

View File

@@ -5,12 +5,12 @@
<title>{{ page.title }}</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="{{ '/website/assets/css/' | append: page.css_file }}">
</head>
<body>
{% include navigation.html %}
{{ content }}
{% include footerNavbar.html %} {% include socialMedia.html %}
{% include footerNavbar.html %}
</body>
</html>

View File

@@ -11,6 +11,6 @@
<body>
{% include navigation.html %}
{{ content }}
{% include footerNavbar.html %} {% include socialMedia.html %}
{% include footerNavbar.html %}
</body>
</html>

View File

@@ -13,6 +13,6 @@
<h1>{{ page.title }}</h1>
<p>{{ page.date | date_to_string }} - {{ page.author }}</p>
{{ content }}
{% include footerNavbar.html %} {% include socialMedia.html %}
{% include footerNavbar.html %}
</body>
</html>

View File

@@ -7,6 +7,10 @@ body {
color: white;
}
#navbarTop {
position: fixed;
}
div.console {
background-color: darkslategrey;
color: white;

View File

@@ -7,6 +7,10 @@ body {
color: white;
}
#navbarTop {
position: fixed;
}
#image00 {
background-color: black;
margin: auto;

View File

@@ -7,6 +7,10 @@ body {
color: white;
}
#navbarTop {
position: fixed;
}
a {
color: lightseagreen;
}