forked from tinamayswinkels/jekyll-tailwind-magazine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
38 lines (36 loc) · 964 Bytes
/
blog.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
---
layout: default
title: Blog Page
banner-image: /assets/images/bg-sanddune.jpg
text-hue: text-white
text-position: items-center
banner-height: min-h-[35vh]
background-position: bg-center left-[20%]
heading: Exploring <br>Sumbawa.
subheading: >-
Nature teaches you to appreciate the finer things in life, to be present, live
in the moment and just breath.
link_url: read more
link_text: Read More
seo:
title:
description:
social_image:
twitter_card:
keywords:
hide-from-google: false
---
{% include hero-banner.html %}
<!-- Recent Blog Tiles -->
<section class="p-5p">
<div class="max-w-screen-xl mx-auto">
<h2 class="pb-8 text-4xl text-center uppercase blog-subheading editable">Recently on the Blog</h2>
<div class="sm:columns-3">
{% for post in site.posts %}
<div class="p-2">
{% include post_loop-recent.html %}
</div>
{% endfor %}
</div>
</div>
</section>