-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.21 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
---
layout: default
scrolljs: true
---
<div class="jumbotron welcome">
<div class="container">
<div class="row justify-content-between align-items-bottom">
<div class="col-lg-5 text-center text-lg-left pb-10">
<h1>{{ site.title }}</h1>
<p>A small website that is a work in progress (i am not good at designing things)</p>
</div>
</div>
</div>
</div>
<section class="blog bg-primary-lighter">
<div class="container">
<div class="post text-lg-left">
<div>
<h2>Latest Blog posts</h2>
{% for post in site.categories.blog limit:1 %}
<h3><a class="fg-primary-dark" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h3>
<h6>{{ post.excerpt }}</h6>
<p><i class="material-icons-outlined post-icons" alt="Creation date">calendar_today</i> {{ post.date | date: '%B %d, %Y' }}
{% if post.modified %} <i class="material-icons-outlined post-icons" alt="Last modified">edit_calendar</i> {{ post.modified | date: '%B %d, %Y' }}{% endif %}
{% if post.author %} <i class="material-icons-outlined post-icons" alt="Author">person_outline</i> {{ post.author }}{% endif %}</p>
{% endfor %}
</div>
</div>
</div>
</section>