From 2e557753f419323937f816e987480264878b81a3 Mon Sep 17 00:00:00 2001 From: Robin King <robin2.king@live.uwe.ac.uk> Date: Sun, 19 Mar 2023 22:23:01 +0000 Subject: [PATCH] refactor(*.html): fix syntax in comments to '&&' instead of '::' where classes are used across multiple files --- about.html | 8 ++++---- index.html | 6 +++--- location.html | 6 +++--- rules.html | 8 ++++---- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/about.html b/about.html index 1146011..2ba9ac0 100644 --- a/about.html +++ b/about.html @@ -13,15 +13,15 @@ <body> <header> - <!-- Navigation Bar -- uses id="main-navigation" class="navbar" :: index.html :: about.html :: rules.html :: location.html --> + <!-- Navigation Bar -- uses id="main-navigation" class="navbar" -- index.html && about.html && rules.html && location.html --> <!-- Burger Menu --> </header> <main> - <!-- Hero -- uses class="hero" :: index.html :: about.html --> - <!-- About -- uses class="text-section" :: about.html :: rules.html :: location.html --> + <!-- Hero -- uses class="hero" -- index.html && about.html --> + <!-- About -- uses class="text-section" -- about.html && rules.html && location.html --> </main> <footer> - <!-- Footer :: index.html :: about.html :: rules.html :: location.html --> + <!-- Footer -- index.html && about.html && rules.html && location.html --> <!-- Copyright --> <!-- Sitemap --> <!-- Socials --> diff --git a/index.html b/index.html index 10ab19a..e427c3f 100644 --- a/index.html +++ b/index.html @@ -13,16 +13,16 @@ <body> <header> - <!-- Navigation Bar -- uses id="main-navigation" class="navbar" :: index.html :: about.html :: rules.html :: location.html --> + <!-- Navigation Bar -- uses id="main-navigation" class="navbar" -- index.html && about.html && rules.html && location.html --> <!-- Burger Menu --> </header> <main> - <!-- Hero -- uses class="hero" :: index.html :: about.html --> + <!-- Hero -- uses class="hero" -- index.html && about.html --> <!-- About -- uses class="grid-2x2" --> <!-- Sign Up Form -- uses class="sign-up-form" --> </main> <footer> - <!-- Footer :: index.html :: about.html :: rules.html :: location.html --> + <!-- Footer -- index.html && about.html && rules.html && location.html --> <!-- Copyright --> <!-- Sitemap --> <!-- Socials --> diff --git a/location.html b/location.html index 3dd4e81..f309c66 100644 --- a/location.html +++ b/location.html @@ -13,16 +13,16 @@ <body> <header> - <!-- Navigation Bar -- uses id="main-navigation" class="navbar" :: index.html :: about.html :: rules.html :: location.html --> + <!-- Navigation Bar -- uses id="main-navigation" class="navbar" -- index.html && about.html && rules.html && location.html --> <!-- Burger Menu --> </header> <main> <!-- Map --> - <!-- Directions -- uses class="text-section" :: about.html :: rules.html :: location.html --> + <!-- Directions -- uses class="text-section" -- about.html && rules.html && location.html --> <!-- Tabs --> </main> <footer> - <!-- Footer :: index.html :: about.html :: rules.html :: location.html --> + <!-- Footer -- index.html && about.html && rules.html && location.html --> <!-- Copyright --> <!-- Sitemap --> <!-- Socials --> diff --git a/rules.html b/rules.html index c786fba..a19f869 100644 --- a/rules.html +++ b/rules.html @@ -13,16 +13,16 @@ <body> <header> - <!-- Navigation Bar -- uses id="main-navigation" class="navbar" :: index.html :: about.html :: rules.html :: location.html --> + <!-- Navigation Bar -- uses id="main-navigation" class="navbar" -- index.html && about.html && rules.html && location.html --> <!-- Burger Menu --> </header> <main> - <!-- Rules -- uses class="text-section" :: about.html :: rules.html :: location.html --> - <!-- Ideas -- uses class="text-section" :: about.html :: rules.html :: location.html --> + <!-- Rules -- uses class="text-section" -- about.html && rules.html && location.html --> + <!-- Ideas -- uses class="text-section" -- about.html && rules.html && location.html --> <!-- Slideshow --> </main> <footer> - <!-- Footer :: index.html :: about.html :: rules.html :: location.html --> + <!-- Footer -- index.html && about.html && rules.html && location.html --> <!-- Copyright --> <!-- Sitemap --> <!-- Socials --> -- GitLab