This commit is contained in:
WickedJack99
2022-09-26 11:25:12 +02:00
parent b2e74de763
commit cc25c1560e
12 changed files with 52 additions and 32 deletions

View File

@@ -1,7 +1,9 @@
<div id="navbarTop" class="w3-bar w3-top 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>
<a href="{{ item.link }}" {% if page.url == item.link %} class="current" {% endif %} class="w3-bar-item w3-button w3-hover-#000000">{{ item.name }}</a>
{% endfor %}
<input class="w3-bar-item w3-input w3-right" type="text" placeholder="Search..">
<button class="w3-bar-item w3-button w3-right" type="submit"><i class="fa fa-search"></i></button>
{% 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 %}

View File

@@ -36,7 +36,7 @@ title: 2022 Week 38 How to create a static website with Jekyll and deploy it on
<h3>Directories</h3>
Create two directories: docs and localDev.
<div class="console">
<code>$ mkdir docs</code>
<code>$ mkdir docs</code><br>
<code>$ mkdir localDev</code>
</div>
docs will contain the content of the website later on.<br>