forked from poole/hyde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
38 lines (34 loc) · 818 Bytes
/
blogs.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
---
layout: default
title: "Blogs"
---
<!--
<div class="quotation">
“There is no greater agony than bearing an untold story inside you.” ~ Maya Angelou<br>
</div>
<div class="coming-soon">
<img src="/public/assets/comingsoon.jpg"
alt="Orange" />
</div>
-->
<div class="posts">
{% for post in site.posts %}
{% if post.path contains 'technology' %}
<div class="post">
<h1 class="post-title">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h1>
<span class="post-date">{{ post.date | date_to_string }}</span>
{% assign desc = post.content | split: '</p>' %}
{{ desc[0] }}
<br>
<a href="{{ post.url }}">
Read More...
</a>
</div>
<hr>
{% endif %}
{% endfor %}
</div>