-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (30 loc) · 984 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
title: Travel
layout: default
permalink: /travel/
nav_id: Travel
nav_weight: 3
---
<div class="row">
<div class="col-md-12">
<h1><a name="events">Travel</a></h1>
<hr />
<div class="row my-col-12-zebra">
{% for post in site.posts %}
{% if post.categories contains "travel-plans" %}
<div class="col-12 my-bordered-news-snippets">
<h2 class="mb-2 mt-3">{% unless post.no-page %}<a href="{{site.url }}{{ post.url }}" style="color:inherit;">{% endunless %}{{ post.title }}{% unless post.no-page %}</a>{% endunless %}</h2>
<hr>
{% if post.event-date-begin %}
{% unless post.single-day-event %}
<div class="mb-4">[{{ post.event-date-begin | date: "%A, %B %-d, %Y" }} to {{ post.event-date-end | date: "%A, %B %-d, %Y" }}]</div>
{% else %}
{% endunless %}
{% endif %}
{{ post.content | markdownify }}
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>