-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharticles.html
More file actions
24 lines (23 loc) · 824 Bytes
/
articles.html
File metadata and controls
24 lines (23 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: default
title: Articles
---
<div class="container">
<div class="row">
{% for post in site.posts %}
{% if post.appears-on == "articles" %}
<div class="col-12 col-sm-12 col-md-6 col-lg-4 col-xl-4 mx-auto my-3">
<a href="{{post.url}}" class="noblue">
<div class="card h-100">
<img src="{{post.imgurl}}" class="card-img-top">
<div class="card-body">
<h4 class="card-title">{{post.title}}</h4>
<p class="card-text">{{post.summary}}</p>
</div>
</div>
</a>
</div>
{% endif %}
{% endfor %}
</div>
</div>