« get me outta code hell

change 'Home' links to 'HSMusic' - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <towerofnix@gmail.com>2020-11-12 17:28:55 -0400
committer(quasar) nebula <towerofnix@gmail.com>2020-11-12 17:29:46 -0400
commit7fcb651e52aff6e16ec48f77dc3224b67404a9c1 (patch)
tree584c24df1afa8967a5051377392381789ee1491e
parentc4519949ccea7bab5f2f8f92203a6ae66a4b115a (diff)
change 'Home' links to 'HSMusic'
before the only indicator that "HSMusic" is the name of the site was
in the url!! that is not good :P
-rw-r--r--upd8.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/upd8.js b/upd8.js
index 7975e6c..a05840a 100644
--- a/upd8.js
+++ b/upd8.js
@@ -1022,7 +1022,7 @@ async function writePage(directoryParts, {
 
     if (nav.simple) {
         nav.links = [
-            ['./', 'Home'],
+            ['./', 'HSMusic'],
             [href, title]
         ]
     }
@@ -1236,7 +1236,7 @@ function writeMiscellaneousPages() {
             nav: {
                 content: fixWS`
                     <h2 class="dot-between-spans">
-                        <span><a class="current" href="./">Home</a></span>
+                        <span><a class="current" href="./">HSMusic</a></span>
                         <span><a href="${C.LISTING_DIRECTORY}/">Listings</a></span>
                         <span><a href="${C.FLASH_DIRECTORY}/">Flashes &amp; Games</a></span>
                         <span><a href="${C.ABOUT_DIRECTORY}/">About &amp; Credits</a></span>
@@ -1466,7 +1466,7 @@ async function writeAlbumPage(album) {
         },
         nav: {
             links: [
-                ['./', 'Home'],
+                ['./', 'HSMusic'],
                 [`${C.ALBUM_DIRECTORY}/${album.directory}/`, album.name],
                 [null, generateAlbumNavLinks(album)]
             ],
@@ -1496,7 +1496,7 @@ async function writeTrackPage(track) {
         },
         nav: {
             links: [
-                ['./', 'Home'],
+                ['./', 'HSMusic'],
                 [`${C.ALBUM_DIRECTORY}/${album.directory}/`, album.name],
                 [`${C.TRACK_DIRECTORY}/${track.directory}/`, track.name],
                 [null, generateAlbumNavLinks(album, track)]
@@ -1894,7 +1894,7 @@ async function writeFlashPage(flash) {
         },
         nav: {
             links: [
-                ['./', 'Home'],
+                ['./', 'HSMusic'],
                 [`${C.FLASH_DIRECTORY}/`, `Flashes &amp; Games`],
                 [`${C.FLASH_DIRECTORY}/${kebab}/`, flash.name],
                 parts.length && [null, parts.join(', ')]