Add Fluid where filter, fix slug (#47)

- Fix issue with path base and logon redirects
This commit is contained in:
2026-07-07 22:57:57 -04:00
parent 8e0b2df870
commit b3eab09576
5 changed files with 40 additions and 19 deletions
+2 -2
View File
@@ -13,8 +13,8 @@
</a>
</h1>
<p>
Published on {{ post.published_on | date: "MMMM d, yyyy" }}
at {{ post.published_on | date: "h:mmtt" | downcase }}
Published on {{ post.published_on | format_date: "MMMM d, yyyy" }}
at {{ post.published_on | format_date: "h:mmtt" | downcase }}
by {{ model.authors | value: post.author_id }}
{{ post.text }}
{%- assign category_count = post.category_ids | size -%}
+2 -2
View File
@@ -2,8 +2,8 @@
<h1>{{ post.title }}</h1>
<h4 class="item-meta text-muted">
{% if post.published_on -%}
Published {{ post.published_on | date: "dddd, MMMM d, yyyy" }}
at {{ post.published_on | date: "h:mm tt" | downcase }}
Published {{ post.published_on | format_date: "dddd, MMMM d, yyyy" }}
at {{ post.published_on | format_date: "h:mm tt" | downcase }}
{%- else -%}
**DRAFT**
{% endif %}
+1 -1
View File
@@ -1,2 +1,2 @@
myWebLog Default Theme
2.2
3