-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.php
151 lines (132 loc) · 6.49 KB
/
blog.php
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en-US">
<head>
<?php require_once "./includes/head.phtml"?>
<title>Blog | FoodieNex</title>
</head>
<body>
<?php require_once "./includes/nav.phtml"?>
<div class="hero-section">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<div class="hero-sec-content">
<h1>Blog</h1>
<?php require_once "./includes/breadcrumb.phtml"?>
</div>
</div>
</div>
</div>
</div>
<?php require_once "./includes/services.phtml"?>
<section class="blog-section" app-section="blog">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-4 blog-block">
<div class="blog mb-4">
<div class="blog-img">
<img src="src/img/blog1.png" class="w-100 img-fluid" alt="" />
</div>
<div class="blog-content">
<div class="date">
<a href="post?CID=Here_are_the_best_online_reservation_systems" class="publish-btn">
22 Auguest, 2020
</a>
</div>
<h2 class="title">
<a href="post?CID=Here_are_the_best_online_reservation_systems">
Here are the best online reservation systems.
</a>
</h2>
<p>Lorem ipsum dolor sit amet consecter adipiscing elit dictum magna laoreet malesuada
at
neque.
</p>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 blog-block">
<div class="blog mb-4">
<div class="blog-img">
<img src="src/img/blog2.png" class="w-100 img-fluid" alt="" />
</div>
<div class="blog-content">
<div class="date"><a href="post?CID=You can integrate saved of customer information" class="publish-btn">22 Auguest, 2020</a></div>
<h2>
<a href="post?CID=You can integrate saved of customer information">
You can integrate saved of customer information
</a>
</h2>
<p>Lorem ipsum dolor sit amet consecter adipiscing elit dictum magna laoreet malesuada at
neque.</p>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 blog-block">
<div class="blog mb-4">
<div class="blog-img">
<img src="src/img/blog3.png" class="w-100 img-fluid" alt="" />
</div>
<div class="blog-content">
<div class="date"><a href="post?CID=As you do your research, there are some key." class="publish-btn">22 Auguest, 2020</a></div>
<h2>
<a href="post?CID=As you do your research, there are some key.">
As you do your research, there are some key.
</a>
</h2>
<p>Lorem ipsum dolor sit amet consecter adipiscing elit dictum magna laoreet malesuada at
neque.</p>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 blog-block">
<div class="blog mb-4">
<div class="blog-img">
<img src="src/img/blog4.png" class="w-100 img-fluid" alt="" />
</div>
<div class="blog-content">
<div class="date"><a href="post?CID=Best way to avoid a burnt Cake." class="publish-btn">22 Auguest, 2020</a></div>
<h2>
<a href="post?CID=Best way to avoid a burnt Cake">
Best way to avoid a burnt Cake
</a>
</h2>
<p>Lorem ipsum dolor sit amet consecter adipiscing elit dictum magna laoreet malesuada at
neque.</p>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-4 blog-block">
<div class="blog mb-4">
<div class="blog-img">
<img src="src/img/blog4.png" class="w-100 img-fluid" alt="" />
</div>
<div class="blog-content">
<div class="date"><a href="post?CID=What Effects does calories really have?" class="publish-btn">22 Auguest, 2020</a></div>
<h2>
<a href="post?CID=What Effects does calories really have?">
What Effects does calories really have?
</a>
</h2>
<p>Lorem ipsum dolor sit amet consecter adipiscing elit dictum magna laoreet malesuada at
neque.</p>
</div>
</div>
</div>
</div>
<div class="row pt-3">
<div class="col-12">
<div class="pages-links text-center">
<ul class="list">
<li class="list-item"><a href="#" class="active">1</a></li>
<li class="list-item"><a href="#">2</a></li>
<li class="list-item"><a href="#">3</a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<?php require_once "./includes/footer.phtml"?>
</body>
</html>