forked from LineageOS/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (23 loc) · 912 Bytes
/
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
---
layout: default
---
<div class="jumbotron">
<div class="container">
<h1>{{ site.description }}</h1>
<a class="btn btn-white" href="https://download.lineageos.org/"><i class="material-icons"></i> Downloads</a>
</div>
</div>
<div class="container post">
{% for post in site.categories.blog %}
<div class="card">
<div class="card-content-1">
<h6>{{ post.excerpt }}</h6>
<h2 class="card-title"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
<p class="index"><i class="fa fa-clock-o fa-fw" aria-hidden="true"></i> {{ post.date | date: '%B %d, %Y' }}{% if post.author %} <i class="fa fa-user-o fa-fw" aria-hidden="true"></i> {{ post.author }}{% endif %}</p>
</div>
<div class="card-button">
<a href="{{ site.baseurl }}{{ post.url }}" class="btn btn-primary btn-simple">Read More</a>
</div>
</div>
{% endfor %}
</div>