-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (24 loc) · 816 Bytes
/
index.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
---
layout: default
page-title: Projects
---
<section class="posts">
<ul>
{% for post in site.posts %}
<li>
<div class="card">
<div class="card-body">
<h3 class="panel-title font-weight-bold"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h3>
<p>{{ post.summary }}</p>
<span class="post-meta">
<small><time datetime="{{ post.date | date_to_xmlschema }}">{{post.date|date: "%m-%d-%Y" }}</time></small>
</span>
</div>
<div class="image-content">
<img class="image-result" href="{{ site.baseurl }}{{ post.url }}" src="https://picsum.photos/510/300?random" alt="Image">
</div>
</div>
</li>
{% endfor %}
</ul>
</section>