-
Notifications
You must be signed in to change notification settings - Fork 5
/
blog.html
executable file
·46 lines (40 loc) · 1.34 KB
/
blog.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
---
layout: page
tagline: Just
title: Read Our <strong>Blog</strong>
---
{% for post in site.posts %}
<!-- Blog Article -->
<div class="post-full">
<article class="blog-article clearfix">
<!-- Article Header -->
<header class="article-header">
<div class="img-wrap">
<img src="{{ site.baseurl }}/images/blog/{{ post.image }}" alt="Article Blog Image">
</div>
<div class="article-title">
<h3 class="title"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h3>
<h4 class="category">{{ post.categories | first }}</h4>
</div>
</header>
<!-- Article Content -->
<div class="article-content">
<div class="article-date text-center">
<div class="date parent">
<div class="date-wrap child-center">
<div class="day">{{ post.date | date: "%d" }}</div>
<div class="month">{{ post.date | date: "%b" }}</div>
</div>
</div>
<div class="time">{{ post.date | date: "%H:%M" }}</div>
</div>
<div class="article-text">
{{ post.content | truncatewords:75 }}
</div>
<div class="show-more">
<a href="{{ site.baseurl }}{{ post.url }}" class="button">Read More</a>
</div>
</div>
</article>
</div>
{% endfor %}