Fix tag local clash with Hanami

This commit is contained in:
2023-09-18 19:29:01 +10:00
parent 22c382c028
commit 7ee1cc3771
5 changed files with 10 additions and 10 deletions

View File

@@ -2,7 +2,7 @@
div class="mb-2"
span class="text-sm text-gray-600 dark:text-gray-200 leading-10"
= "Tagged: "
- tags.each do |tag|
- tags.each do |post_tag|
span
a class="p-category rounded p-1 mr-1 text-xsm u-url bg-yellow-100/60 hover:bg-yellow-200 dark:bg-yellow-400/60 dark:hover:bg-yellow-400/80 dark:text-yellow-100 dark:hover:text-yellow-100 text-gray-600" href="/tagged/#{tag.slug}"
= tag.label
a class="p-category rounded p-1 mr-1 text-xsm u-url bg-yellow-100/60 hover:bg-yellow-200 dark:bg-yellow-400/60 dark:hover:bg-yellow-400/80 dark:text-yellow-100 dark:hover:text-yellow-100 text-gray-600" href="/tagged/#{post_tag.slug}"
= post_tag.label

View File

@@ -43,7 +43,7 @@ div class="flex justify-between max-w-prose mx-auto mb-2"
div class="grid grid-cols-3 gap-4 max-w-prose mx-auto"
- photo_posts.each do |post|
== render "shared/photo_post", post: post
== render "shared/photo_post", post: post, extended: false
- if last_location
div class="mb-12 mt-6 max-w-prose mx-auto text-gray-600 dark:text-gray-200 rounded p-2 bg-blue-50 dark:bg-blue-900/60"

View File

@@ -7,9 +7,9 @@ div class="mb-12 prose dark:prose-invert max-w-prose mx-auto text-gray-800 dark:
div
h3 class="text-xl mt-6 mb-2 font-bold text-gray-800 dark:text-gray-200" = group.upcase
- tags.each do |tag|
- tags.each do |post_tag|
span class="inline-block mb-2"
a class="p-category no-underline rounded p-1 mr-1 text-xsm u-url bg-yellow-100/60 hover:bg-yellow-200 dark:bg-yellow-400/60 dark:hover:bg-yellow-400/80 dark:text-yellow-50 dark:hover:text-yellow-100 text-gray-600" href="/tagged/#{tag.slug}"
= tag.label
a class="p-category no-underline rounded p-1 mr-1 text-xsm u-url bg-yellow-100/60 hover:bg-yellow-200 dark:bg-yellow-400/60 dark:hover:bg-yellow-400/80 dark:text-yellow-50 dark:hover:text-yellow-100 text-gray-600" href="/tagged/#{post_tag.slug}"
= post_tag.label
div class="max-w-screen-md mx-auto border-t-4 border-solid border-gray-400 dark:border-gray-600"

View File

@@ -1,7 +1,7 @@
- context.content_for(:title, "Tag - #{tag.label} | ")
- context.content_for(:title, "Tag - #{post_tag.label} | ")
div class="mb-12 prose dark:prose-invert max-w-prose mx-auto text-gray-800 dark:text-gray-200"
h2 = "#{posts.count} item(s) tagged \"#{tag.label}\""
h2 = "#{posts.count} item(s) tagged \"#{post_tag.label}\""
div class="mb-12 max-w-prose mx-auto"
- posts.each do |post|

View File

@@ -15,7 +15,7 @@ module Adamantium
end
end
expose :tag do |slug:|
expose :post_tag do |slug:|
tag_repo.fetch!(slug)
end
end