diff options
| author | Bobby <[email protected]> | 2023-07-05 17:18:27 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-07-05 17:18:27 -0400 |
| commit | 6fd373b8b677cc94d8cf43a74bf15573e2653e61 (patch) | |
| tree | 53f0381a047900b1e62e5e78a06c7225efc73656 /templates | |
| parent | b71294eadecc604d4cc074eb9ec6f3a888b97fb7 (diff) | |
| download | thatcomputerscientist-6fd373b8b677cc94d8cf43a74bf15573e2653e61.tar.xz thatcomputerscientist-6fd373b8b677cc94d8cf43a74bf15573e2653e61.zip | |
Fun Stuff is separated to good stuff and site spells. Harlem Shake and DVD Spells added; Oneko is now a spell
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/blog/partials/base.html | 3 | ||||
| -rw-r--r-- | templates/blog/partials/sidebar.html | 33 |
2 files changed, 34 insertions, 2 deletions
diff --git a/templates/blog/partials/base.html b/templates/blog/partials/base.html index b9c4b48d..cd605dae 100644 --- a/templates/blog/partials/base.html +++ b/templates/blog/partials/base.html @@ -4,7 +4,7 @@ <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <meta name="viewport" content="width=device-width, initial-scale=1.0 " /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="description" content="{{ request.meta.description }}" /> <meta name="image" content="{{ request.meta.image }}" /> <meta name="url" content="{{ request.meta.url }}" /> @@ -147,6 +147,7 @@ <script src="{% static 'js/jquery-1.12.4.min.js' %}"></script> <script src="{% static 'js/globals.js' %}"></script> + <script src="{% static 'js/spells.js' %}"></script> <script src="{% static 'js/phone_compatibility.js' %}"></script> <script type="text/javascript" diff --git a/templates/blog/partials/sidebar.html b/templates/blog/partials/sidebar.html index c0611890..31ea7604 100644 --- a/templates/blog/partials/sidebar.html +++ b/templates/blog/partials/sidebar.html @@ -157,7 +157,7 @@ </div> <div id="fun-stuff" class="mtctitem"> - <h2>Fun Stuff</h2> + <h2>Good Stuff</h2> <ul> <li> <span> @@ -189,6 +189,12 @@ </a> </span> </li> + </ul> +</div> + +<div id="site-spells" class="mtctitem"> + <h2>Site Spells</h2> + <ul> <li> {% if request.COOKIES.summonOneko == 'true' %} <span> @@ -210,6 +216,31 @@ </span> {% endif %} </li> + <li> + <span> + <img src="{% static 'images/site/patrick-star.gif' %}" alt="Patrick Star" border="0" id="patrick"> + </span> + <span> + <a href="javascript:harlemShakeAndBake();"> + Harlem Shake + </a> + </span> + </li> + <li> + <div style="position: fixed; top: 0; left: 0;"> + <div id="black" style="display: none;" onclick="javascript:handleDVD();"> + <div id="dvd"></div> + </div> + </div> + <span> + <img src="{% static 'images/site/dvd.gif' %}" alt="DVD" border="0"> + </span> + <span> + <a href="javascript:handleDVD();"> + DVD SiteSaver + </a> + </span> + </li> </ul> </div> |
