-
Notifications
You must be signed in to change notification settings - Fork 0
/
news2.html
64 lines (53 loc) · 1.9 KB
/
news2.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
---
title: SPICE - News
permalink: /news/
layout: default
---
<main>
<!-- Slider Area Start-->
<div class="services-area">
<div class="container">
<!-- Section-tittle -->
<div class="row d-flex justify-content-center">
<div class="col-lg-8">
<div class="section-tittle text-center mb-80">
<span>What we are currently working on</span>
<h2>News</h2>
</div>
</div>
</div>
</div>
</div>
<!-- Slider Area End-->
<!--================Blog Area =================-->
<section class="blog_area single-post-area section-padding">
<div class="container">
<div class="row">
<div class="col-lg-8 posts-list">
{% for post in site.posts %}
<div class="single-post">
<div class="blog_details">
<h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a>
</h2>
<ul class="blog-info-link mt-3 mb-4">
<li><i class="fa fa-user"></i> {{ post.author }}</li>
<li><i class="fa fa-calendar"></i>{{ post.date | date_to_string }}</li>
<li><i class="fa fa-hashtag"></i> {{ post.tag }}</li>
</ul>
<p class="excert">
{{ post.excerpt }}
</p>
</div>
</div>
{% endfor %}
</div>
<div class="col-lg-4">
{% include sidebar.html %}
</div>
</div>
</div>
</section>
<!--================ Blog Area end =================-->
<!-- have-project Start-->
<!-- have-project End -->
</main>