forked from acf-sack/sack-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 2.89 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
layout: default
title: St Anthony's College Kandy
---
<div class="main">
<div class="section">
<div class="container">
<div class="row">
<div class="col">
<h1 class="display-2 font-weight-bold ml-3">SACK News</h1>
</div>
</div>
<div class="row">
{% for post in site.posts limit: 1%}
<div class="col-md-8">
<a href="{{ post.url }}" class="text-decoration-none text-dark">
<div class="post-card card-body">
<img class="img-fluid w-100" src="{{ site.baseurl }}/assets/img/{{ post.img }}"
alt="{{ post.title }}">
<h2 class="font-weight-bold">{{ post.title }}</h2>
{{ post.date | date_to_string }}
{{ post.excerpt }}
</div>
</a>
</div>
{% endfor%}
<div class="col-md-4">
{% for post in site.posts limit: 4 offset:1%}
<a href="{{ post.url }}" class="text-decoration-none text-dark">
<div class="post-card card-body row">
<img class="img-fluid col-6" src="{{ site.baseurl }}/assets/img/{{ post.img }}"
alt="{{ post.title }}">
<div class="col-6">
<h4 class="font-weight-bold">{{ post.title }}</h4>
{{ post.date | date_to_string }}
</div>
</div>
</a>
{% endfor%}
</div>
</div>
</div>
</div>
<div class="section container">
<div class="row">
<div class="col-md-8 ml-3">
{% for post in site.posts %}
<a href="{{ post.url }}" class="text-decoration-none text-dark">
<div class="post-card card-body">
<div class="row align-items-start">
<div class="col-4">
<img class="img-fluid" src="{{ site.baseurl }}/assets/img/{{ post.img }}"
alt="{{ post.title }}">
</div>
<div class="col-8 mt-0">
<h2 class="font-weight-bold mt-0">{{ post.title }}</h2>
<p>
{{ post.date | date_to_string }}
{{ post.excerpt }}
</p>
</div>
</div>
</div>
</a>
{% endfor%}
</div>
</div>
</div>
</div>