diff options
-rw-r--r-- | _layouts/default.html | 9 | ||||
-rw-r--r-- | index.md | 2 | ||||
-rw-r--r-- | projects.markdown | 4 | ||||
-rw-r--r-- | timedate.js | 15 |
4 files changed, 4 insertions, 26 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 1866841..ee01499 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -23,7 +23,6 @@ <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="stylesheet" href="/assets/index.css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script> - <script src="/timedate.js"></script> <link rel="me" href="https://github.com/mounderfod" /> <link rel="me" href="https://mastodon.sdf.org/@mounderfod" /> <span class="h-card" style="display: none"> @@ -36,18 +35,14 @@ </head> <body> - <marquee> - <p id="timedate" style="font-size: x-large"> - The time is {} and the date is {} - </p> - </marquee> + <h1><a href="/" style="text-decoration: none;">[mounderfod]</a></h1> <div id="main">{{content}}</div> </body> <hr style="margin-top: 5%;"> <footer> <div style="overflow: scroll;"> <p style="color: gray; margin-bottom: 0;"> === INDEPENDENT, TRACKERLESS AD === </p> - <iframe src="https://banner.tildeverse.org/work.php?ID=mounderfod" width="468" height="70" marginwidth="0" + <iframe src="https://banner.tildeverse.org/work.php?ID=mounderfod" width="478" height="70" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no" target="_blank"></iframe> </div> diff --git a/index.md b/index.md index 87f682b..b7e44ee 100644 --- a/index.md +++ b/index.md @@ -4,8 +4,6 @@ title: Home permalink: / --- -# mounderfod - My little corner of the internet. (mirrored at `gopher://tilde.institute/~mounderfod`) diff --git a/projects.markdown b/projects.markdown index 4ce4b59..172f15e 100644 --- a/projects.markdown +++ b/projects.markdown @@ -5,13 +5,13 @@ permalink: /projects/ --- [⟸ Back to homepage](/) +# Projects ## Honor Oak Slightly strange electronic/indie music. -[> (bandcamp - DRM-free downloads)](https://honoroak.bandcamp.com) +[> (bandcamp - DRM-free downloads)](https://honoroak.bandcamp.com)<br> [> (other links)](https://linktr.ee/honor_oak) -# Projects ## OSLI An organisation that I am running to provide various services for individuals on the Internet.<br> I hope to set it up as a tilde-style public Unix system soon. diff --git a/timedate.js b/timedate.js deleted file mode 100644 index a9562ab..0000000 --- a/timedate.js +++ /dev/null @@ -1,15 +0,0 @@ -updateDate = () => { - const d = new Date(); - $("#timedate").text( - `The time is ${(d.getHours() < 10 ? "0" : "") + d.getHours()}:${ - (d.getMinutes() < 10 ? "0" : "") + d.getMinutes() - }:${ - (d.getSeconds() < 10 ? "0" : "") + d.getSeconds() - } and the date is ${d.toLocaleString("en-us", { - weekday: "long", - })} ${d.getDate()} ${d.toLocaleString("en-us", { - month: "long", - })} ${d.getFullYear()}` - ); -}; -time = setInterval(updateDate, 1000); |