Tag orientation

This commit is contained in:
Cassidy Williams
2024-01-29 00:08:31 -06:00
parent d00c8009b6
commit c8dbbddb7c
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ const { tags, all } = Astro.props;
---
{all && <h3>View posts by tag</h3>}
<div class="tags">
<div class=`${all && "tags"}`>
{
tags &&
tags.map((tag) => (

View File

@@ -3,7 +3,7 @@ layout: "../layouts/BlogPost.astro"
title: "Use JavaScript to let an HTML element get its own index"
slug: self-aware-html
description: "Make your HTML more 'self-aware' with a funky little JavaScript trick."
added: "Jan 27 2024"
added: "Jan 28 2024"
tags: [technical]
---