diff options
author | Anthony Wang | 2024-01-04 22:02:06 -0600 |
---|---|---|
committer | Anthony Wang | 2024-01-04 22:02:06 -0600 |
commit | 6eadaba44867b5107dba8b741a91d378ea6161b5 (patch) | |
tree | 845e38444197b625ecf70852007fa80d002aeccc /layouts | |
parent | 5f9f1060b0436f482e4b19be9f210f5087dabf42 (diff) |
Add default quote, use smart quotes for footer to match rest of site
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/footer.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index a4f0de1..4480835 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -1,5 +1,5 @@ <footer class="footer"> - <div class="quote"></div> + <div class="quote">“To Be Filled By O.E.M.”</div> <div>CC BY-SA 4.0</div> <script> var quotes = [ @@ -20,6 +20,6 @@ "It will make you laugh! It will make you cry! It will make you try mayonnaise-frosted pie!", "Icicles? Tide pods? No, typos." ] - document.querySelector(".quote").innerHTML = "\"" + quotes[Math.floor(Math.random() * quotes.length)] + "\""; + document.querySelector(".quote").innerHTML = "“" + quotes[Math.floor(Math.random() * quotes.length)] + "”"; </script> </footer> |