1
0

various fixes and small changes

This commit is contained in:
sashinexists
2024-12-07 12:55:37 +11:00
parent 8d4e430428
commit e4f6674ca8
8 changed files with 27 additions and 12 deletions

View File

@@ -1,5 +1,13 @@
---
title: About
---
arstarstarstarst
why isn't this working
I am interested in two things:
- How the world works
- How we can make it better
My mission is to develop a deep understanding of how our world works — economically, politically, historically — and write to make it common knowledge.
I write wanting to address the problems in the world that keep us trapped in cycles of suffering.
I want to write a better world.

View File

@@ -1,4 +1,5 @@
---
title: Now
---
This is where the now page will be
Now page will be here, along with a link to view previous now pages
- you should write up a new now page

View File

@@ -1,4 +1,5 @@
---
title: Subscribe
---
It's too early
- to do:
- move your mailing list from digital ocean to a different platform

View File

@@ -1,5 +1,10 @@
---
title: Support
---
pls support me, I need sustainance
### be here now
The support page will be here.
You will explain what you are trying to do, what you need, what you will do with the money.
You'll create an open collective page and link it.
Maybe also use liberapay

View File

@@ -3,7 +3,7 @@
templates
index.html = templates/default.ori.html("Welcome to the index page!")
views = (views.ori/)
map(data/pages, page.ori)
...map(data/pages, page.ori)
favicon.ico
// ...map(data/pages, (page)=>templates/default.ori.html(templates/partials/article.ori.html/(page/())))
}

View File

@@ -1,9 +1,9 @@
<nav class="site-navigation">
<ul>
<li><a href="/about.ori.md">About</a></li>
<li><a href="">Now</a></li>
<li><a href="/now.ori.md">Now</a></li>
<li><a href="/views">Views</a></li>
<li><a href="">Subscribe</a></li>
<li><a href="">Support</a></li>
<li><a href="/subscribe.ori.md">Subscribe</a></li>
<li><a href="/support.ori.md">Support</a></li>
</ul>
</nav>

View File

@@ -1,3 +1,3 @@
<a href="/views/${ _/slug}.md" class="view-card">
<a href="/views/${ _/slug}" class="view-card">
<span>${ _/title }</span>
</a>

View File

@@ -1,4 +1,4 @@
{
index.html = templates/default.ori.html(templates/partials/view-cards.ori.html(data/views))
...map(data/views, (view)=>templates/default.ori.html(templates/partials/article.ori.html(view)))
...map(map(data/views, (view)=>templates/default.ori.html(templates/partials/article.ori.html(view))), {extension: '.md->'})
}