changeset 80:ec24b7d30ce9

navigation: span -> div I think this'll make it work on Safari
author Paper <paper@paper.us.eu.org>
date Mon, 20 May 2024 03:46:03 -0400
parents 815c0da68384
children eb3bbc61bc17
files .build.yml _includes/navigation.html
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/.build.yml	Mon May 20 03:39:55 2024 -0400
+++ b/.build.yml	Mon May 20 03:46:03 2024 -0400
@@ -17,4 +17,4 @@
     bundle exec jekyll build
     tar -C _site -cvz . > ../site.tar.gz
 - upload: |
-    hut pages publish -d $site site.tar.gz
\ No newline at end of file
+    hut pages publish -d $site site.tar.gz
--- a/_includes/navigation.html	Mon May 20 03:39:55 2024 -0400
+++ b/_includes/navigation.html	Mon May 20 03:46:03 2024 -0400
@@ -4,9 +4,9 @@
 		<a href="{{ item.link }}" {% if page.url == item.link or page.url contains item.prefix %}class="navbar-item-active"{% else %}class="navbar-item"{% endif %}>{{ item.name }}</a>
 	{% endfor %}
 	<!-- external links belong here -->
-	<span class="align-right">
+	<div class="align-right">
 		<a href="https://www.youtube.com/channel/UC8yLNvg6ktP7X_dupByIc-w" class="navbar-item">vids</a>
 		<a href="https://modarchive.org/index.php?request=view_artist_modules&query=92603" class="navbar-item">tunes</a>
 		<a href="https://anilist.co/user/Paper" class="navbar-item">weeb</a>
-	</span>
+	</div>
 </div>