-
Notifications
You must be signed in to change notification settings - Fork 5
/
blog.html
45 lines (39 loc) · 1.3 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
35
36
37
38
39
40
41
42
43
44
45
---
layout: default
permalink: /blog/
page_type: blog
---
<div class="row">
<h1 class="col-xs-12 page-title">Blog</h1>
</div>
<div class="row">
<div class="col-xs-12">
{% for post in site.posts %}
<div class="blogpost-short">
<a href="{{ post.url }}">
<div class="banner" style="background-image: url('{{ post.banner }}')">
<div class="metadata">
<div class="title">
{{ post.title }}
</div>
<img src="{{ post.author_image }}" alt="" class="pull-left" />
<div class="author-name">
By {{ post.author }}
</div>
<div class="author-date">
{{ post.date | date: "%b %-d, %Y" }}
</div>
</div>
</div> </a>
{{ post.excerpt }}
<a href="{{ post.url | prepend: site.baseurl }}" class="btn btn-default btn-read-more">Read more</a>
</div>
{% endfor %}
</div>
<!-- <div class="col-xs-12 col-sm-4">
<div class="right-sidebar">
<h2>Join thousands of institutions on the OAE</h2>
<a href="/join" class="btn btn-lg btn-oae">Join the network</a>
</div>
</div> -->
</div>