-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ add schema.org microdata, webring, rss, sitemap, styling
* 📝 add schema.org microdata across the site * ✨ rss, footer, webring, ferris * 📝 add article-dates styling
- Loading branch information
Showing
22 changed files
with
26,539 additions
and
31,786 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,6 @@ | |
"workspaces/*" | ||
], | ||
"devDependencies": { | ||
"astro": "4.4.2" | ||
"astro": "4.5.18" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,55 @@ | ||
--- | ||
import { SITE_TITLE } from '../consts'; | ||
import WebRing from './WebRing.astro'; | ||
import { SITE_TITLE, STRIPE_COLORS } from '~/consts'; | ||
const today = new Date(); | ||
const navBorder = STRIPE_COLORS[0]; | ||
--- | ||
|
||
<footer> | ||
<hr /> | ||
© {today.getFullYear()} {SITE_TITLE} All rights reserved. | ||
<nav> | ||
<a href="/">home</a> | ||
<a href="/whoami">whoami</a> | ||
<a href="/blahg">blahg</a> | ||
<a href="/resume">resume</a> | ||
<a href="/rss.xml" target="_blank">rss feed</a> | ||
</nav> | ||
<p>© 2001-{today.getFullYear()} {SITE_TITLE} All rights reserved.</p> | ||
|
||
<WebRing /> | ||
|
||
<a href="/" class="you-still-here" title="You're still here? Go Home"><img src="/ferris-end-scene.avif" width="381" height="177" alt="You're still here? (Screen shot from Ferris Bueller's Day Off)" /></a> | ||
</footer> | ||
<style> | ||
|
||
<style define:vars={{ navBorder }}> | ||
footer { | ||
padding: 25px 0; | ||
padding: 2em 0 4em; | ||
text-align: center; | ||
nav { | ||
border-top: 1px solid var(--navBorder); | ||
border-bottom: 1px solid var(--navBorder); | ||
display: inline-block; | ||
width: 100%; | ||
padding: 2em 0; | ||
max-width: var(--max-character-width); | ||
|
||
a { | ||
display: inline-block; | ||
text-decoration: none; | ||
&::before { | ||
content: ' • '; | ||
} | ||
&:first-child::before { | ||
content: '' | ||
} | ||
} | ||
} | ||
.you-still-here { | ||
display: block; | ||
margin: 100vh auto 0; | ||
img { | ||
margin: 0 auto; | ||
border-radius: 1em; | ||
} | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
import { SITE_TITLE, STRIPE_COLORS } from '~/consts'; | ||
const today = new Date(); | ||
const navBorder = STRIPE_COLORS[0]; | ||
--- | ||
|
||
<div> | ||
<h3>CS.Sjoy.lol <a href="https://cs.sjoy.lol">webring</a></h3> | ||
<div> | ||
<a href="https://webri.ng/webring/cssjoy/previous?via=https://scottnath.com" aria-label="previous site">← Prev</a> | ||
<a href="https://webri.ng/webring/cssjoy/random?via=https://scottnath.com" aria-label="random site">🎲</a> | ||
<a href="https://webri.ng/webring/cssjoy/next?via=https://scottnath.com" aria-label="next site">Next →</a> | ||
</div> | ||
</div> | ||
|
||
<style define:vars={{ navBorder }}> | ||
div:has(h3) { | ||
display: inline-block; | ||
border: 1px solid var(--navBorder); | ||
padding: .5em 3em; | ||
border-radius: 2em; | ||
|
||
h3 { | ||
margin: 0; | ||
padding-bottom: 1em; | ||
} | ||
|
||
div { | ||
display: flex; | ||
a { | ||
flex: 1; | ||
text-decoration: none; | ||
white-space: nowrap; | ||
} | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.