Revive the "blog" as (Tech)notes
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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 }}
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|
||||||
|
|||||||
@@ -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 %}
|
||||||
Reference in New Issue
Block a user