Skip to content

Commit 6f187e1

Browse files
committed
index.md
1 parent 5882376 commit 6f187e1

5 files changed

Lines changed: 44 additions & 19 deletions

File tree

_layouts/base.html

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{%- assign site_url = "https://cb341.dev" -%}
22
{%- assign default_title = "cb341.dev" -%}
33
{%- assign default_description = "Full-stack software developer specializing in Ruby on Rails, web applications, and modern development practices. Portfolio, blog, and projects." -%}
4-
{%- comment -%} " | " separator: e.g. "About | Dani Bengl - Full-Stack Developer" {%- endcomment -%}
5-
{%- assign page_title = page.title | append: " | " | append: default_title | default: default_title -%}
4+
{%- if page.title and page.title != default_title -%}
5+
{%- assign page_title = page.title | append: " | " | append: default_title -%}
6+
{%- else -%}
7+
{%- assign page_title = default_title -%}
8+
{%- endif -%}
69
{%- assign page_description = page.description | default: default_description -%}
710
{%- assign current_url = site_url | append: page.url -%}
811
{%- comment -%} og_type: posts have page.date set; everything else is a website {%- endcomment -%}
@@ -117,9 +120,9 @@
117120
<div class="wrapper">
118121
<header role="banner">
119122
<nav>
120-
<b>CB341.DEV</b>
123+
<b><a href="/">CB341.DEV</a></b>
121124
&nbsp; <a href="/about">About</a>
122-
&nbsp; <a href="/">Blog</a>
125+
&nbsp; <a href="/blog">Blog</a>
123126
&nbsp; <a href="/projects">Projects</a>
124127
&nbsp; <a href="/gallery">Gallery</a>
125128
&nbsp; <a href="/threads">Threads</a>
@@ -148,7 +151,7 @@
148151
/
149152
<a href="/rss.xml" target="_blank" rel="noopener noreferrer">RSS Feed</a>
150153
/
151-
<a href="https://cb341.dev/quartz/" target="_blank" rel="noopener noreferrer">Quartz</a>
154+
<a href="https://quartz.cb341.dev/" target="_blank" rel="noopener noreferrer">Quartz</a>
152155
/
153156
<a href="https://mastodon.social/deck/@cb341" target="_blank" rel="noopener noreferrer">Mastodon</a>
154157
/

blog-redirect.html

Lines changed: 0 additions & 6 deletions
This file was deleted.

blog/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Blog"
33
description: "Full-stack software developer specializing in Ruby on Rails, web applications, and modern development practices. Portfolio, blog, and projects."
4-
permalink: /
4+
permalink: /blog/
55
---
66

77
<h1>Blog</h1>

index.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: "cb341.dev"
3+
description: "Writing, projects, studying, visual scraps, and notes."
4+
permalink: /
5+
---
6+
7+
# cb341.dev
8+
9+
Writing, projects, studying, visual scraps, and notes.
10+
11+
- [Blog](/blog/) is for longer writing.
12+
- [Threads](/threads/) is for loose thoughts and fragments.
13+
- [Projects](/projects/) is for things I built.
14+
- [Gallery](/gallery/) is for visual leftovers.
15+
- [Quartz](https://quartz.cb341.dev/) is for studying and notes.
16+
17+
## Currently
18+
19+
Following Richard Behiel and [gwern.net](https://gwern.net/me).
20+
21+
Learning chess by playing slowly enough to see why I lose. Building [chess-widget](/projects/chess-widget/) to capture the games, annotations, and mistakes in a small static replay widget.
22+
23+
Also reading *99 Variations on a Proof*.
24+
25+
## Recent Writing
26+
27+
{%- for post in site.posts limit: 5 %}
28+
- {{ post.date | date: site.date_format }}: [{{ post.title }}]({{ post.url }})
29+
{%- endfor %}

projects/index.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@ layout: base
66

77
# Projects
88

9-
A collection of personal projects I've worked on.
9+
Things I built, broke, rewrote, or kept around long enough to document.
1010

11-
_There are many more to be documented here. [Check out my GitHub](https://github.com/cb341) for more projects in the meantime._
11+
More lives in [GitHub repositories](https://github.com/cb341?tab=repositories&q=&type=source&language=&sort=).
1212

1313
{%- for project in site.projects %}
14-
15-
## [{{ project.title }}]({{ project.url }})
16-
17-
{{ project.description }}
18-
14+
<p>
15+
<a href="{{ project.url }}"><b>{{ project.title }}</b></a><br>
16+
{{ project.description }}
17+
</p>
1918
{%- endfor %}

0 commit comments

Comments
 (0)