diff --git a/Makefile b/Makefile
index 6a3142b..f2f33e8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-static/dist: static/dist/line-awesome/svg static/dist/github-markdown-css/github-markdown-light.css
+static/dist: static/dist/line-awesome/svg static/dist/github-markdown-css/github-markdown-light.css static/dist/line-awesome/fonts/la-solid-900.woff2
static/dist/line-awesome/svg: static/dist/line-awesome/svg/envelope.svg static/dist/line-awesome/svg/github.svg static/dist/line-awesome/svg/linkedin.svg static/dist/line-awesome/svg/ellipsis-h-solid.svg
@@ -15,6 +15,10 @@ static/dist/line-awesome/svg/linkedin.svg: node_modules/line-awesome/svg/linkedi
mkdir -p $(dir $@)
cp $< $@
+static/dist/line-awesome/fonts/la-solid-900.woff2: node_modules/line-awesome/dist/line-awesome/fonts/la-solid-900.woff2
+ mkdir -p $(dir $@)
+ cp $< $@
+
static/dist/github-markdown-css/github-markdown-light.css: node_modules/github-markdown-css/github-markdown-light.css
@mkdir -p $(dir $@)
cp $< $@
diff --git a/content/blog/2022-12-07-gamels.md b/content/blog/2022-12-07-gamels.md
new file mode 100644
index 0000000..1bc644c
--- /dev/null
+++ b/content/blog/2022-12-07-gamels.md
@@ -0,0 +1,23 @@
+---
+layout: page
+title: "I re-implemented `ls` to query the Steam API"
+description: "gamels: never be confused about Steam appid direcroties again"
+date: 2022-12-07
+tags: project
+draft: false
+extra:
+ auto_center_images: true
+ excerpt: "`gamels` will list all files in a directory in the style of `ls -la`, but will also show the name of any Steam game found in the listing. This utility was made to help me explore the filesystem of the Steam Deck."
+---
+
+Today, I released a new command-line tool called [`gamels`](https://github.com/ewpratten/gamels).
+
+Linux gamers may be familiar with digging around the `copmpatdata` and `shadercache` directories in `~/.local/share/Steam/steamapps`. This is a tedious task that involves lots of googling, since Steam names game-specific directories after the game's application id.
+
+
+
+`gamels` solves this problem by querying the Steam API to see if any directory names match known app ids. If so, the name of the corresponding game is shown in the listing.
+
+
+
+Installation instructions and source code are available on [GitHub](https://github.com/ewpratten/gamels).
diff --git a/static/images/posts/gamels/steam_app_ids.png b/static/images/posts/gamels/steam_app_ids.png
new file mode 100644
index 0000000..695bc16
Binary files /dev/null and b/static/images/posts/gamels/steam_app_ids.png differ
diff --git a/templates/components/site-timeline.html b/templates/components/site-timeline.html
index 9594f04..51978e9 100644
--- a/templates/components/site-timeline.html
+++ b/templates/components/site-timeline.html
@@ -1,6 +1,7 @@
{% block component_styles %}
{{ super() }}
+
{% endblock component_styles %}
{# Build a list of pages to work with #}