working on getting ori.md files working

This commit is contained in:
sashinexists
2024-12-06 16:58:35 +11:00
parent cf86ed83fd
commit bbc3f19c83
13 changed files with 121 additions and 43 deletions

View File

@@ -0,0 +1,5 @@
---
title: About
---
arstarstarstarst
why isn't this working

View File

@@ -0,0 +1,4 @@
---
title: Now
---
This is where the now page will be

View File

@@ -0,0 +1,4 @@
---
title: Subscribe
---
It's too early

View File

@@ -0,0 +1,5 @@
---
title: Support
---
pls support me, I need sustainance
### be here now

View File

@@ -2,7 +2,7 @@
title: All religions are wrong
slug: all-religions-are-wrong
---
# Why I hold this view
## Why I hold this view
insert reasons here for why I believe all religions are wrong
# Why it matters
## Why it matters
insert reasons here for why I think it matters

View File

@@ -2,7 +2,7 @@
title: There is no god
slug: there-is-no-god
---
# Why I hold this view
## Why I hold this view
insert reasons here for why I believe there is no god
# Why it matters
## Why it matters
insert reasons here for why I think it matters

View File

@@ -3,7 +3,7 @@ title: We do not need hierarchies
slug: we-do-not-need-hierarchies
---
# Why I hold this view
## Why I hold this view
insert reasons here for why I believe hierarchy is bad
# Why it matters
## Why it matters
insert reasons here for why I think it matters

View File

@@ -2,7 +2,7 @@
title: You should be vegan
slug: you-should-be-vegan
---
# Why I hold this view
## Why I hold this view
insert reasons here for why people should be vegan
# Why it matters
## Why it matters
insert reasons for why this matters

View File

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

View File

@@ -1,20 +1,27 @@
:root {
/* COLORS */
--rich-black: #030303; /*for body background colour*/
--eerie-black: #171717; /* for article background colour*/
--charleston-green: #2c2c2c; /*for article background rollover*/
--dark-medium-gray: #aaa; /* for main body text throughout website*/
--platinum: #e9e9e9; /* for titles*/
--middle-green: #52aa5e; /* for the main heading and links*/
--turquoise-green: #a0d0a7; /* for links in their hover state*/
--amaranth: #ef2d56; /* just for the support heart in its hoverstate */
--rich-black: #030303;
/*for body background colour*/
--eerie-black: #171717;
/* for article background colour*/
--charleston-green: #2c2c2c;
/*for article background rollover*/
--dark-medium-gray: #aaa;
/* for main body text throughout website*/
--platinum: #e9e9e9;
/* for titles*/
--middle-green: #52aa5e;
/* for the main heading and links*/
--turquoise-green: #a0d0a7;
/* for links in their hover state*/
--amaranth: #ef2d56;
/* just for the support heart in its hoverstate */
/* THEME */
/* COLOURS */
--page-title-color: var(--middle-green);
--link-color: var(--middle-green);
--link-hover-color: var(--turquise-green)
--body-background-color: var(--rich-black);
--link-hover-color: var(--turquise-green) --body-background-color: var(--rich-black);
--article-background-color: var(--eerie-black);
--text-color: var(--dark-medium-gray);
--nav-link-color: var(--text-color);
@@ -22,7 +29,11 @@
/* FONT SIZES */
--font-size: 1.7rem;
--page-title-font-size: 3.6rem;
--card-background-hover: var(--charleston-green)
--card-background-hover: var(--charleston-green);
/* PADDING */
--article-padding: 3rem;
/* OTHER */
--border-radius: 1rem;
}
@@ -84,6 +95,17 @@ body {
.page-content {
padding: 2rem;
flex-grow: 1;
display: flex;
flex-flow: column nowrap;
align-items: center;
}
.page-content h2 {
font-size: 2.4rem;
font-weight: 300;
margin-top: 3rem;
margin-bottom: 1rem;
}
.site-footer {
@@ -99,10 +121,12 @@ body {
list-style: none;
font-size: 1.4rem;
}
.site-navigation a {
text-decoration: none;
color: var(--nav-link-color);
}
.site-navigation a:hover {
text-decoration: none;
color: var(--nav-link-color-hover);
@@ -122,18 +146,43 @@ body {
.view-card {
background: var(--article-background-color);
padding: 3rem; /*replace this with a variable */
border-radius: 1rem;
padding: 3rem;
/*replace this with a variable */
border-radius: var(--border-radius);
text-decoration: none;
color: var(--text-color);
font-size: 3rem;
font-weight: 300;
text-align: center;
width: 700px;
width: 70rem;
}
.view-card:hover {
color: var(--link-color-hover);
background-color: var(--card-background-hover)
background-color: var(--card-background-hover);
}
.article {
background-color: var(--article-background-color);
padding: var(--article-padding);
border-radius: var(--border-radius);
width: 90rem;
display: flex;
flex-flow: column nowrap;
gap: 3rem;
}
.article-header {
display: flex;
flex-flow: row nowrap;
align-items: center;
justify-content: space-between;
width: 100%;
}
.article-title {
font-weight: 300;
font-size: 2.4rem;
color: var(--page-title-color);
}

View File

@@ -0,0 +1,9 @@
<article class="article">
<header class="article-header">
<h1 class="article-title">${ _/title }</h1>
<!-- <div class="article-last-updated-date">${ _/slug}</div> -->
</header>
<section class="article-content">
${ mdHtml(_/@text) }
</section>
</article>

View File

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

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(mdHtml(view)))
...map(data/views, (view)=>templates/default.ori.html(templates/partials/article.ori.html(view)))
}