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 title: About
--- ---
arstarstarstarst I am interested in two things:
why isn't this working
- 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 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 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 title: Support
--- ---
pls support me, I need sustainance The support page will be here.
### be here now
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 templates
index.html = templates/default.ori.html("Welcome to the index page!") index.html = templates/default.ori.html("Welcome to the index page!")
views = (views.ori/) views = (views.ori/)
map(data/pages, page.ori) ...map(data/pages, page.ori)
favicon.ico favicon.ico
// ...map(data/pages, (page)=>templates/default.ori.html(templates/partials/article.ori.html/(page/()))) // ...map(data/pages, (page)=>templates/default.ori.html(templates/partials/article.ori.html/(page/())))
} }

View File

@@ -1,9 +1,9 @@
<nav class="site-navigation"> <nav class="site-navigation">
<ul> <ul>
<li><a href="/about.ori.md">About</a></li> <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="/views">Views</a></li>
<li><a href="">Subscribe</a></li> <li><a href="/subscribe.ori.md">Subscribe</a></li>
<li><a href="">Support</a></li> <li><a href="/support.ori.md">Support</a></li>
</ul> </ul>
</nav> </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> <span>${ _/title }</span>
</a> </a>

View File

@@ -1,4 +1,4 @@
{ {
index.html = templates/default.ori.html(templates/partials/view-cards.ori.html(data/views)) 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->'})
} }