-
Notifications
You must be signed in to change notification settings - Fork 28
/
blog.html
34 lines (28 loc) · 1.22 KB
/
blog.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
---
layout: default
title: Blog
---
<style>body {background-color: #fafafa;}</style>
<div class="jumbotron">
<div class="container">
<h1>Blog</h1>
<p>Changelogs and news from the LineageOS team.</p>
<a class="btn btn-primary" href="{{ site.baseurl }}/feed.xml"><i class="material-icons-outlined post-icons">rss_feed</i> RSS Feed</a>
</div>
</div>
<div class="container post">
{% for post in site.categories.blog %}
<div class="card">
<div class="card-body">
<h6>{{ post.excerpt }}</h6>
<h2 class="card-title"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
<p class="card-text"><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>
</div>
<div class="card-button">
<a href="{{ site.baseurl }}{{ post.url }}" class="btn btn-link text-primary">Read More</a>
</div>
</div>
{% endfor %}
</div>