diff --git a/components/TextCard.vue b/components/TextCard.vue index c0f11ba..fc6258a 100644 --- a/components/TextCard.vue +++ b/components/TextCard.vue @@ -4,7 +4,8 @@ const props = defineProps({ heading: String, description: String, subheading: String, - id: Number + id: Number, + tags: String }); @@ -13,7 +14,8 @@ const props = defineProps({

{{props.heading}}

-

{{props.subheading}} - #{{ props.id }}

+

{{props.subheading}} - #{{ props.id }}

+

{{props.subheading}} - #{{ props.id }} - {{ props.tags }}

{{props.description}}

diff --git a/content/blog/about-this-site.md b/content/blog/about-this-site.md index c4086d5..53f066c 100644 --- a/content/blog/about-this-site.md +++ b/content/blog/about-this-site.md @@ -4,6 +4,7 @@ title: 'About This Site' description: 'A look behind the technologies and inspiration for this site' date: '20-07-2024' id: 2 +tags: 'Programming' --- diff --git a/content/blog/first-post.md b/content/blog/first-post.md index cfd7d91..20cc662 100644 --- a/content/blog/first-post.md +++ b/content/blog/first-post.md @@ -4,6 +4,7 @@ title: 'First Blog Post' description: 'A simple test post to make sure everythings working' date: '20-07-2024' id: 1 +tags: '' --- diff --git a/pages/blog-index.vue b/pages/blog-index.vue index 497af43..ad36b9f 100644 --- a/pages/blog-index.vue +++ b/pages/blog-index.vue @@ -3,6 +3,12 @@ <-- Return Home

Tom's Blog

+

Tag Search: + Clear Search - + Programming - + Game Dev - + Queer Stuff +

@@ -19,7 +26,20 @@