Revive the "blog" as (Tech)notes
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -3,7 +3,6 @@ title: "Hello World"
|
||||
layout: post
|
||||
date: 2025.07.18
|
||||
---
|
||||
# Welcome
|
||||
|
||||
**Hello world**, this is my first Jekyll blog post.
|
||||
|
||||
|
||||
@@ -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 %}
|
||||
Reference in New Issue
Block a user