Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
javierarce committed Nov 21, 2023
1 parent 45d3079 commit 9764eb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _includes/types/post.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{% assign matching_location = site.locations | where: "location", post.location | first %}

<div class="Post {% if post.highlighted -%} is-highlighted{% endif -%}">
<div class="Post {% if post.highlighted -%} is-highlighted{% endif -%} h-entry">
{% if post.show_title -%}
<div class="Post__title">{{ post.title }}</div>
{% endif -%}
<div class="Post__content{% if post.extraClassName %} {{ post.extraClassName }}{% endif %}">
<div class="Post__content{% if post.extraClassName %} {{ post.extraClassName }}{% endif %} e-content">
{% if post.content contains "<!-- more -->" -%}
{{ post.content | split:"<!-- more -->" | first }}
<div class="Post__more">
Expand All @@ -15,7 +15,7 @@
{% endif -%}
</div>
<div class="Post__footer">
<a href="{{ post.url }}" class="Post__date">{{ post.date | date: '%B %d, %Y' }}</a>
<a href="{{ post.url }}" class="Post__date dt-published u-url">{{ post.date | date: '%B %d, %Y' }}</a>

{% if post.locations %}
&middot;
Expand Down

0 comments on commit 9764eb3

Please sign in to comment.