Revive the "blog" as (Tech)notes

This commit is contained in:
2025-12-15 16:34:22 -08:00
parent bd6ee4e7b5
commit 27d35ab7e7
4 changed files with 14 additions and 12 deletions

View File

@@ -16,8 +16,8 @@
<li class="nav-item">
<a href="/projects" class="nav-link">Projects</a>
</li>
<!-- <li class="nav-item">-->
<!-- <a href="/blog" class="nav-link">Blog</a>-->
<!-- </li>-->
<li class="nav-item">
<a href="/notes" class="nav-link">(Tech)notes</a>
</li>
</ul>
</nav>

View File

@@ -2,12 +2,11 @@
layout: default
---
<link rel="stylesheet" href="/assets/css/blog.css">
<div class="infobar">
<a href="/blog">All posts</a>
<p>{{ page.date | date: "%Y.%m.%d" }}</p>
<div class="project-header">
<div class="breadcrumb-wrapper">
<a href="/blog">All technotes</a>
</div>
<h1>{{ page.title }}</h1>
</div>
{{ content }}

View File

@@ -3,7 +3,6 @@ title: "Hello World"
layout: post
date: 2025.07.18
---
# Welcome
**Hello world**, this is my first Jekyll blog post.

View File

@@ -1,9 +1,13 @@
---
title: "Journal"
title: "(Tech)notes"
layout: default
---
<h1>Blog</h1>
<h1>(Tech)notes</h1>
Documenting work-in-progress projects, learnings, and more.
<p></p>
{% assign posts_by_month = site.posts | group_by_exp: "post", "post.date | date: '%B %Y'" %}
{% for month in posts_by_month %}