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"> <li class="nav-item">
<a href="/projects" class="nav-link">Projects</a> <a href="/projects" class="nav-link">Projects</a>
</li> </li>
<!-- <li class="nav-item">--> <li class="nav-item">
<!-- <a href="/blog" class="nav-link">Blog</a>--> <a href="/notes" class="nav-link">(Tech)notes</a>
<!-- </li>--> </li>
</ul> </ul>
</nav> </nav>

View File

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

View File

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

View File

@@ -1,9 +1,13 @@
--- ---
title: "Journal" title: "(Tech)notes"
layout: default 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'" %} {% assign posts_by_month = site.posts | group_by_exp: "post", "post.date | date: '%B %Y'" %}
{% for month in posts_by_month %} {% for month in posts_by_month %}