Skip to content

Commit ae11153

Browse files
committed
add etc
1 parent 334a3eb commit ae11153

File tree

2 files changed

+55
-0
lines changed

2 files changed

+55
-0
lines changed

_layouts/default.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<li><a href="{{ site.baseurl }}/firstContact.html">First Contact</a></li>
2727
<li><a href="{{ site.baseurl }}/laonPeople.html">Laon People review</a></li>
2828
<li><a href="{{ site.baseurl }}/codingPractices.html">Coding Practices</a></li>
29+
<li><a href="{{ site.baseurl }}/etc.html">etc</a></li>
2930
</ul>
3031
</li>
3132
</ul>

etc.html

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
layout: default
3+
---
4+
5+
<!-- Breadcrumb Section Begin -->
6+
<section class="breadcrumb-section">
7+
<div class="container">
8+
<div class="row">
9+
<div class="col-lg-6">
10+
<div class="breadcrumb-option">
11+
<a href="#"> Posts </a>
12+
<span>etc</span>
13+
</div>
14+
</div>
15+
<div class="col-lg-6">
16+
<div class="breadcrumb-text">
17+
<h3>E T C</h3>
18+
</div>
19+
</div>
20+
</div>
21+
</div>
22+
</section>
23+
<!-- Breadcrumb Section End -->
24+
25+
<!-- Blog Section Begin -->
26+
<div class="blog-section spad">
27+
<div class="container">
28+
<div class="row">
29+
30+
{% for post in site.categories.etc %}
31+
<div class="col-lg-6">
32+
<div class="blog-item solid-bg">
33+
<div class="bi-text">
34+
<ul>
35+
<li><i class="fa fa-calendar-o"></i> {{ post.date | date_to_string }} </li>
36+
</ul>
37+
<a href="{{ post.url | prepend: site.baseurl }}">
38+
<h4>{{ post.title }}</h4>
39+
<p>{{ post.excerpt | strip_html | truncatewords: 20 }}</p>
40+
</a>
41+
<div class="bt-author">
42+
<div class="ba-text">
43+
<h5>{{ post.author }}</h5>
44+
</div>
45+
</div>
46+
</div>
47+
</div>
48+
</div>
49+
{% endfor %}
50+
51+
</div>
52+
</div>
53+
</div>
54+
<!-- Blog Section End -->

0 commit comments

Comments
 (0)