forked from StartBootstrap/startbootstrap-clean-blog-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
46 lines (37 loc) · 1.18 KB
/
about.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
---
layout: page
title: About the Project
description:
background: '/img/monastery.jpg'
---
<p>Some longer about text here...</p>
<!-- <p> <h2> Recent News </h2> <p>
<p> <h1> Recent News </h1> <p>
<div>
<!-- Home Post List -->
{% for post in site.posts limit : 5 %}
<article class="post-preview">
<a href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">
<h2 class="post-title">{{ post.title }}</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">{{ post.subtitle }}</h3>
{% else %}
<h3 class="post-subtitle">{{ post.excerpt | strip_html | truncatewords: 15 }}</h3>
{% endif %}
</a>
<p class="post-meta">Posted by
{% if post.author %}
{{ post.author }}
{% else %}
{{ site.author }}
{% endif %}
on
{{ post.date | date: '%B %d, %Y' }}</p>
</article>
<hr>
{% endfor %} -->
<!-- Pager -->
<div class="clearfix">
<a class="btn btn-primary float-right" href="{{"/posts" | relative_url }}">View All Posts →</a>
</div>
</div>