Quartz sync: Jun 19, 2025, 12:03 PM

This commit is contained in:
B 2025-06-19 12:03:39 -04:00
parent 7e2f16eb38
commit 74df091d6b
10 changed files with 36 additions and 27 deletions

View File

@ -4,7 +4,7 @@ alias:
- "basic-guide-to-the-personal-web"
date: 2025-06-08 16:58
socialDescription: Carve your corner of the internet
tags: indieweb, articles
tags: indieweb
---
I found an awesome link to a video describing the personal web. Give it a watch if you're interested in setting up your own corner of the web that you own, rather than use social media. Thank you omg.lol discord!

View File

@ -5,7 +5,7 @@ alias:
date: 2025-05-28 08:26
socialDescription: My first contribution article is live!
socialImage: https://binarycdn.b-cdn.net/liz/og-image.png
tags: indieweb, articles, goodinternet
tags: indieweb, goodinternet
---
I contributed to my first internet magazine by [Xandra](https://xandra.cc) - Good Internet!

View File

@ -5,7 +5,7 @@ alias:
date: 2025-06-09 23:55
updated: 2025-06-17 21:00
socialDescription: Quartz to the rescue!
tags: articles, obsidian, quartz
tags: obsidian, quartz
---
I might finally be able to make a digital garden with a self hosted version of [Quartz](https://quartz.jzhao.xyz/). Since the goal of this site was originally to be "un-posse" and just kind of exist on the internet, and I wanted it to be a collection of cool ideas, notes, inspiration, etc, I might switch it from bear blog to self hosted. Let's see how I feel this week.

View File

@ -4,7 +4,7 @@ alias:
- "un-posse-an-experiment"
date: 2025-02-19 09:39
socialDescription: ot Gonna POSSE
tags: posse, articles
tags: posse
---
> [!info]POSSE - Publish (on your) Own Site, Syndicate Elsewhere

View File

@ -4,7 +4,7 @@ alias:
- "what-is-the-indieweb"
date: 2025-05-07 14:31
socialDescription: Take control of your content.
tags: indieweb, articles
tags: indieweb
---
What is the IndieWeb?

View File

@ -4,15 +4,12 @@ title: Liz's Notebook
<link rel="me" href="https://social.lol/@binarydigit"/>
<link rel="me" href="mailto:liz@foobox.com">
![Retrowave Border](https://binarycdn.b-cdn.net/retrowave-border.png)
> [!example] Hello Internet
> I go by the name Liz Roboto - some people know me as B online. I'm a tech director, artist, casual gamer and CSS tinkerer. I love the small web, retro tech, travel, art, fashion, photography and currently working on a creative portfolio and digital garden. Please keep checking back for updates each week.
> Subscribe to my updated [RSS feed](/index.xml), sign my [guestbook](/guestbook/), or say hi via [email](/about#contact/)!
> I go by the name <span class="h-card"><a href="http://liz.computer/" class="u-url u-uid"><img class="h-card" src="https://binarycdn.b-cdn.net/liz/smol-flopp.png" width="80" align="right"/>Liz Roboto</a></span> - some people know me as B. I'm a tech director, artist, casual gamer and CSS tinkerer. I love the small web, retro tech, travel, art, fashion, photography and currently working on a creative portfolio and digital garden. Please keep checking back for updates each week. Subscribe to my updated <a href="/index.xml">RSS feed</a>, sign my <a href="/guestbook/">guestbook</a>, or say hi via <a href="/about#contact/">email</a>)!
> <br>
> [!alert] Current Status
> <script src="https://status.cafe/current-status.js?name=lizbytes" defer></script>
> <div id="statuscafe"><div id="statuscafe-username"></div><div id="statuscafe-content"></div></div>
> <br>

View File

@ -0,0 +1,6 @@
---
title: Better Web Search
tags: links
---
- An AI-overview-free Google search: [udm14.com](https://udm14.com/)

View File

@ -23,8 +23,8 @@ const config: QuartzConfig = {
fontOrigin: "googleFonts",
cdnCaching: true,
typography: {
header: "",
body: "Roboto",
header: "Outfit",
body: "Outfit",
code: "Roboto Mono",
},
colors: {

View File

@ -8,10 +8,8 @@ export const sharedPageComponents: SharedLayout = {
afterBody: [],
footer: Component.Footer({
links: {
// Contact: "https://letterbird.co/liz",
"<-": "https://xn--sr8hvo.ws/previous",
"Indieweb":"https://xn--sr8hvo.ws",
"->": "https://xn--sr8hvo.ws/next",
Email: "https://letterbird.co/liz",
RSS: "/index.xml",
},
}),
}

View File

@ -13,10 +13,8 @@ export default ((opts?: Options) => {
const links = opts?.links ?? []
return (
<footer class={`${displayClass ?? ""}`}>
<p><small>
{i18n(cfg.locale).components.footer.createdWith}{" "}
<a href="https://quartz.jzhao.xyz/">Quartz</a> © {year}
</small></p>
<img src="https://binarycdn.b-cdn.net/retrowave-border.png"/>
<p>
<ul>
{Object.entries(links).map(([text, link]) => (
<li>
@ -25,6 +23,14 @@ export default ((opts?: Options) => {
))}
</ul>
<a href="https://xn--sr8hvo.ws/previous"> </a>
<a href="https://xn--sr8hvo.ws">IndieWeb Webring</a>
<a href="https://xn--sr8hvo.ws/next"> </a>
</p>
</footer>
)
}
@ -32,3 +38,5 @@ export default ((opts?: Options) => {
Footer.css = style
return Footer
}) satisfies QuartzComponentConstructor
// {i18n(cfg.locale).components.footer.createdWith}{" "} <a href="https://quartz.jzhao.xyz/">Quartz</a> © {year}