0042
This commit is contained in:
@@ -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>
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
@@ -11,6 +11,6 @@
|
||||
<body>
|
||||
{% include navigation.html %}
|
||||
{{ content }}
|
||||
{% include footerNavbar.html %} {% include socialMedia.html %}
|
||||
{% include footerNavbar.html %}
|
||||
</body>
|
||||
</html>
|
||||
@@ -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>
|
||||
@@ -7,6 +7,10 @@ body {
|
||||
color: white;
|
||||
}
|
||||
|
||||
#navbarTop {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
div.console {
|
||||
background-color: darkslategrey;
|
||||
color: white;
|
||||
|
||||
@@ -7,6 +7,10 @@ body {
|
||||
color: white;
|
||||
}
|
||||
|
||||
#navbarTop {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
#image00 {
|
||||
background-color: black;
|
||||
margin: auto;
|
||||
|
||||
@@ -7,6 +7,10 @@ body {
|
||||
color: white;
|
||||
}
|
||||
|
||||
#navbarTop {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
a {
|
||||
color: lightseagreen;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user