Fix post snippets

This commit is contained in:
2023-02-25 13:54:02 +11:00
parent 5e309810ac
commit 1af509ec60
3 changed files with 5 additions and 2 deletions

View File

@@ -71,6 +71,10 @@ module Adamantium
"https://api.mapbox.com/styles/v1/dnitza/cleb2o734000k01pbifls5620/static/pin-s+555555(#{lon},#{lat})/#{lon},#{lat},14,0/620x310@2x?access_token=pk.eyJ1IjoiZG5pdHphIiwiYSI6ImNsZWIzOHFmazBkODIzdm9kZHgxdDF4ajQifQ.mSneE-1SKeju8AOz5gp4BQ" "https://api.mapbox.com/styles/v1/dnitza/cleb2o734000k01pbifls5620/static/pin-s+555555(#{lon},#{lat})/#{lon},#{lat},14,0/620x310@2x?access_token=pk.eyJ1IjoiZG5pdHphIiwiYSI6ImNsZWIzOHFmazBkODIzdm9kZHgxdDF4ajQifQ.mSneE-1SKeju8AOz5gp4BQ"
end end
def template_type
:post
end
private private
# e.g. geo:-37.75188,144.90417;u=35 # e.g. geo:-37.75188,144.90417;u=35

View File

@@ -76,7 +76,6 @@ module Adamantium
def places_listing(limit: nil) def places_listing(limit: nil)
posts posts
.where(post_type: "checkin") .where(post_type: "checkin")
.exclude(location: nil)
.published .published
.combine(:tags) .combine(:tags)
.order(Sequel.desc(:published_at)) .order(Sequel.desc(:published_at))

View File

@@ -3,6 +3,6 @@ div class="mb-12 prose dark:prose-invert max-w-prose mx-auto text-gray-800 dark:
div class="mb-12 max-w-prose mx-auto" div class="mb-12 max-w-prose mx-auto"
- posts.each do |post| - posts.each do |post|
== render post.post_type.to_sym, post.post_type.to_sym => post == render post.template_type.to_sym, post.template_type.to_sym => post
div class="max-w-screen-md mx-auto border-t-4 border-solid border-gray-400 dark:border-gray-600" div class="max-w-screen-md mx-auto border-t-4 border-solid border-gray-400 dark:border-gray-600"