-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update blog with categories for pages
- Loading branch information
1 parent
2a213b0
commit 4da1ae1
Showing
14 changed files
with
79 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
- [Posts](/blog){role=tab} | ||
- [Notes](/tags/note){role=tab} | ||
- [Rants](/tags/rant){role=tab} | ||
- [External](/tags/external){role=tab} | ||
|
||
{.cluster role=list} | ||
|
||
<style data-helmet="blog"> | ||
[role="tab"], | ||
[role="tab"]:focus, | ||
[role="tab"]:hover { | ||
border-width: 0; | ||
border-style: double; | ||
border-color: hsl(var(--color-bg)); | ||
border-bottom-width: var(--space-0-5); | ||
border-bottom-color: hsl(var(--color-bg)); | ||
cursor: pointer; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
src/blog/opentelemetry-challenges-handling-long-running-spans.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
title: "Why I Do What I Do" | ||
date: 2024-08-13 | ||
tags: [note] | ||
--- | ||
|
||
I thought today about why I do what I do. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
pagination: | ||
data: collections | ||
size: 1 | ||
alias: tag | ||
permalink: /tags/{{ tag }}/ | ||
eleventyComputed: | ||
title: "`{{ tag | capitalize }}`s" | ||
eleventyExcludeFromCollections: true | ||
--- | ||
|
||
{% include "tag-nav.html" %} | ||
|
||
{% set taglist = collections[ tag ] %} | ||
{% for post in taglist | reverse %} | ||
|
||
- [{{ post.data.title }}]({{ post.url }}){.font-heading .text-3} | ||
<time class="italic" datetime="{{ post.date.toISOString() }}">{{ post.date | postDate }}</time> {.bordered-box} | ||
|
||
{% endfor %} | ||
{.flow .flow-5} |