diff --git a/_data/navigation.yml b/_data/navigation.yml index e32094d..3cf1bcb 100644 --- a/_data/navigation.yml +++ b/_data/navigation.yml @@ -1,5 +1,5 @@ - name: Blog - link: /blog.html + link: / - name: OSS link: /oss.html - name: About diff --git a/_data/oss.yml b/_data/oss.yml index 8825a93..b9a8c31 100644 --- a/_data/oss.yml +++ b/_data/oss.yml @@ -16,5 +16,5 @@ - title: Highlight definition and control block structures pr: https://github.com/Shopify/ruby-lsp/pull/2779 repo: ruby-lsp - status: open + status: merged date: 2024-10-25 diff --git a/_includes/header.html b/_includes/header.html index 5bdc132..5800995 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -4,14 +4,14 @@ diff --git a/blog.html b/blog.html index 2d5ccfc..3b1fa53 100644 --- a/blog.html +++ b/blog.html @@ -1,29 +1,13 @@ --- layout: default title: Blog +permalink: / --- -
+
-
-

Categories

-
-
-
- {% for tag in site.tags %} - - - - - - {{ tag[0] }} - - - {% endfor %} -
-
-
+

Tags

@@ -42,19 +26,25 @@

Tags

-
+
{% for post in site.posts %} -
- -

{{ post.title }}

+
+ +

{{ post.title }}

- -

{{ post.excerpt }}

-
+ +
+ {% for tag in post.tags %} - {{ post.tags| join: ", " }} + + {{ tag }} + + {% endfor %} +
+
+ {{ post.excerpt | remove: '

' | remove: '

' }}
{% endfor %} diff --git a/index.html b/index.html deleted file mode 100644 index d645086..0000000 --- a/index.html +++ /dev/null @@ -1,4 +0,0 @@ ---- -layout: default -title: Home ---- diff --git a/oss.html b/oss.html index 1ec35c4..ce431a0 100644 --- a/oss.html +++ b/oss.html @@ -3,18 +3,18 @@ title: OSS --- -
+
-
+

Open Source Software

- contributions + contributions
{% assign repos = site.data.repos %} {% for item in repos %}
-
+
{% assign oss = site.data.oss | sort: "time" | reverse %} {% for item in oss %} -
+
-

{{ item.title}}

+

{{ item.title}}

- -

repository: {{ item.repo }}

-

status: {{ item.status }}

+ +

repository: {{ item.repo }}

+

status: {{ item.status }}

{% endfor %}