-
Notifications
You must be signed in to change notification settings - Fork 0
/
japan.html
52 lines (48 loc) · 1.51 KB
/
japan.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
39
40
41
42
43
44
45
46
47
48
49
50
51
---
layout: trips
title: Tokyo '16
type: page
trip:
category: japan
banner_title: >
#udomraemen
banner_subtitle: >
Tokyo! | 2016
banner_image: "http://im.vsco.co/1/51f48bb095e8247120/56c9e77a40955b61337b8a75/vsco_022216.jpg"
---
<div class="home">
<header>
<div class="heading-img">
<img src="/img/icons/flight-ticket.svg" alt="icon">
</div>
<h1 class="page-heading">Travelogue</h1>
</header>
<section id="trip-grid">
<ul class="post-list post-grid" data-component="['grid-masonry']">
<li class="post-grid-sizer"></li>
{% for post in site.posts %}
{% if post.categories contains page.trip.category %}
{% if post.thumbnail %}
<li class="post-item" style="background-image: url({{post.thumbnail}});"
data-title="{{ post.title }}">
{% else %}
<li class="post-item no-bg" data-title="{{ post.title }}">
<!-- <div class="img"><img src="{{post.thumbnail}}" alt="{{ post.title }}"></dKiv> -->
{% endif %}
<div class="post-fill"></div>
<a class="post-link post-wrap" href="{{ post.url | prepend: site.baseurl }}">
<!-- <div class="post-wrap"> -->
<div class="text-wrap">
<h4>
{{ post.title }}
</h4>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
</div>
<!-- </div> -->
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</section>
</div>