-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyummytummyph.html
97 lines (93 loc) · 3 KB
/
yummytummyph.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
title: Yummy Tummy PH
layout: default
background: '/img/bg-index.jpg'
---
<!-- Home Intro
================================================== -->
{% if page.url != "/" %}
<div class="rounded mb-5 hero">
<div class="row align-items-center justify-content-between">
<h1 class="font-weight-bold mb-4 serif-font">Thank You for the Delicious
Memories!</h1>
<div class="col-md-8">
<p class="lead mb-4">
Dear Foodie Friends,<br /><br />
After an incredible journey of sharing our foodie adventures and serving
you with our delicious food products, we have decided to close
yummytummy.ph. We are immensely grateful for your support, engagement,
and love over the years. Your enthusiasm and patronage have made this
journey truly special.<br /><br />
Thank you for being a part of our foodie family and supporting all
aspects of our journey!<br /><br />
With heartfelt gratitude,<br />Yummy & Tummy
</p>
</div>
<div class="col-md-4">
<img src="assets/images/YT.jpg">
</div>
</div>
</div>
<div class="rounded mb-5" style="background-color: #3EA9EB;">
<div class="row align-items-center justify-content-between">
<div class="col-md-12 p-5">
<img src="assets/images/memories/1.jpg"><br/>
<img class="mt-5" src="assets/images/memories/2.jpg"><br/>
<img class="mt-5" src="assets/images/memories/3.jpg"><br/>
<img class="mt-5" src="assets/images/memories/4.jpg"><br/>
<img class="mt-5" src="assets/images/memories/5.jpg"><br/>
<img class="mt-5" src="assets/images/memories/6.jpg"><br/>
<img class="mt-5" src="assets/images/memories/7.jpg"><br/>
<img class="mt-5" src="assets/images/memories/8.jpg"><br/>
<img class="mt-5" src="assets/images/memories/9.jpg"><br/>
<img class="mt-5" src="assets/images/memories/10.jpg"><br/>
</div>
</div>
</div>
{% endif %}
<!-- Featured
================================================== -->
<section class="row">
{% for post in site.posts %}
{% if post.featured == true %}
<div class="col-md-4 mb-5">
{% include postbox.html %}
</div>
{% endif %}
{% endfor %}
</div>
</section>
<!-- Posts List with Sidebar (except featured)
================================================== -->
{% if thisishidden == true %}
<section class="row">
<div class="col-sm-8">
<div class="row">
{% for post in paginator.posts %}
{% unless post.featured == true %}
<div class="col-md-6 mb-5">
{% include postbox.html %}
</div>
{% endunless %}
{% endfor %}
</div>
<!-- Pagination -->
<div class="bottompagination">
<span class="navigation" role="navigation">
{% include pagination.html %}
</span>
</div>
</div>
<div class="col-sm-4">
{% include sidebar.html %}
</div>
</section>
{% endif %}
<style>
.lh-1 {
line-height: 1;
}
small {
font-size:65%;
}
</style>