-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
180 additions
and
4 deletions.
There are no files selected for viewing
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,8 @@ | ||
--- | ||
title = "Greetings!" | ||
date = 2024-10-09T00:00:00+00:00 | ||
layout = "post" | ||
permalink = "date" | ||
--- | ||
|
||
Welcome to the Oku blog! Here, you'll find posts regarding project milestones and development progress. |
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,9 @@ | ||
--- | ||
layout = "default" | ||
--- | ||
|
||
<article class="post"> | ||
<h1 class="post-title">{{ page.data.title }}</h1> | ||
<time datetime="{{ page.date.rfc_2822 }}" class="post-date">{{ page.date.short_day }}, {{ page.date.day }} {{ page.date.short_month }} {{ page.date.year }}</time> | ||
{{ page.rendered }} | ||
</article> |
File renamed without changes.
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,7 @@ | ||
--- | ||
layout = "default" | ||
depends = ["blog"] | ||
permalink = "blog/index.html" | ||
--- | ||
{% assign posts = blog | sort: "date.rfc_3339" | reverse %} | ||
{% include index.voxs posts = posts minimal = true %} |
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,23 @@ | ||
.masthead { | ||
padding-top: var(--spacer); | ||
padding-bottom: var(--spacer); | ||
margin-bottom: var(--spacer-2); | ||
} | ||
|
||
.masthead small:not(:last-of-type)::after { | ||
content: " • "; | ||
} | ||
|
||
.masthead-title { | ||
margin-bottom: 0; | ||
|
||
a { | ||
color: inherit; | ||
text-decoration: none; | ||
} | ||
|
||
small { | ||
font-weight: 400; | ||
opacity: .5; | ||
} | ||
} |
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,58 @@ | ||
.page, | ||
.post { | ||
margin-bottom: 4em; | ||
box-shadow: none; | ||
background: none; | ||
|
||
li+li { | ||
margin-top: .25rem; | ||
} | ||
} | ||
|
||
.page-title, | ||
.post-title { | ||
color: var(--heading-color); | ||
margin-top: 0; | ||
} | ||
|
||
.post-title a { | ||
color: inherit; | ||
text-decoration: none; | ||
|
||
&:hover, | ||
&:focus { | ||
text-decoration: wavy underline; | ||
} | ||
} | ||
|
||
.post-date { | ||
display: block; | ||
margin-top: -.5rem; | ||
margin-bottom: var(--spacer); | ||
color: var(--border-color); | ||
} | ||
|
||
.related { | ||
padding-top: var(--spacer-2); | ||
padding-bottom: var(--spacer-2); | ||
margin-bottom: var(--spacer-2); | ||
border-top: 1px solid var(--border-color); | ||
border-bottom: 1px solid var(--border-color); | ||
} | ||
|
||
.related-posts { | ||
padding-left: 0; | ||
list-style: none; | ||
|
||
h3 { | ||
margin-top: 0; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
|
||
small { | ||
color: var(--gray-600); | ||
} | ||
} | ||
} |
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,8 @@ | ||
<header class="masthead center"> | ||
<h3 class="masthead-title"> | ||
<a href="{{ global.url }}" title="Home">{{ global.title }}</a> | ||
<small>{{ global.description }}</small> | ||
</h3> | ||
<small><a href="{{ global.url }}/about" title="About">about</a></small> | ||
<small><a href="{{ global.url }}/blog" title="Blog">blog</a></small> | ||
</header> |
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,30 @@ | ||
{% if include.minimal %} | ||
{% for post in include.posts %} | ||
<article class="post"> | ||
<h1 class="post-title"> | ||
<a href="{{ post.url | prepend: "/" | prepend: global.url }}"> | ||
{{ post.data.title }} | ||
</a> | ||
</h1> | ||
{% if post.date %} | ||
<time datetime="{{ post.date.rfc_2822 }}" class="post-date">{{ post.date.short_day }}, {{ post.date.day }} {{ post.date.short_month }} {{ post.date.year }}</time> | ||
{% endif %} | ||
</article> | ||
{% endfor %} | ||
{% else %} | ||
<div class="posts"> | ||
{% for post in include.posts %} | ||
<article class="post"> | ||
<h1 class="post-title"> | ||
<a href="{{ post.url | prepend: "/" | prepend: global.url }}"> | ||
{{ post.data.title }} | ||
</a> | ||
</h1> | ||
{% if post.date %} | ||
<time datetime="{{ post.date.rfc_2822 }}" class="post-date">{{ post.date.short_day }}, {{ post.date.day }} {{ post.date.short_month }} {{ post.date.year }}</time> | ||
{% endif %} | ||
{{ post.rendered }} | ||
</article> | ||
{% endfor %} | ||
</div> | ||
{% endif %} |