-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
32 lines (31 loc) · 1.1 KB
/
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
28
29
30
31
32
---
layout: default
title: St Anthony's College Kandy
---
<div class="main">
<div class="section pb-5">
<div class="container">
<div class="row">
<div class="col">
<h3 class="display-2 font-weight-bold ml-3" id="News">News</h3>
</div>
</div>
<div class="row">
<div class="col-md-8">
{% for post in site.posts %}
<a href="{{ post.url }}" class="text-decoration-none text-dark">
<div class=" card-body">
<div class="row align-items-start">
<div class="col-12">
<h2 class="font-weight-bold mt-0">{{ post.title }}</h2>
<h5>{{ post.date | date_to_string }}</h5>
</div>
</div>
</div>
</a>
{% endfor%}
</div>
</div>
</div>
</div>
</div>