-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodingPractices.html
54 lines (50 loc) · 1.64 KB
/
codingPractices.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
---
layout: default
---
<!-- Breadcrumb Section Begin -->
<section class="breadcrumb-section">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="breadcrumb-option">
<a href="#"> Posts </a>
<span>Coding Practices</span>
</div>
</div>
<div class="col-lg-6">
<div class="breadcrumb-text">
<h3>Coding Practices</h3>
</div>
</div>
</div>
</div>
</section>
<!-- Breadcrumb Section End -->
<!-- Blog Section Begin -->
<div class="blog-section spad">
<div class="container">
<div class="row">
{% for post in site.tags.coding_practice %}
<div class="col-lg-6">
<div class="blog-item solid-bg">
<div class="bi-text">
<ul>
<li><i class="fa fa-calendar-o"></i> {{ post.date | date_to_string }} </li>
</ul>
<a href="{{ post.url | prepend: site.baseurl }}">
<h4>{{ post.title }}</h4>
<p>{{ post.excerpt | strip_html | truncatewords: 20 }}</p>
</a>
<div class="bt-author">
<div class="ba-text">
<h5>{{ post.author }}</h5>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
<!-- Blog Section End -->