-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (35 loc) · 1.1 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
34
35
36
37
38
39
40
41
42
43
44
45
---
layout: default
title: Streamlyne Blog
---
<div id="home">
<div class="jumbotron">
<div class="slb-title-cont">
<h1 id="slb-title" >Welcome to the {{ site.name }}</h1>
<p><a id="slb-main-site-btn" href="{{ site.company.url }}" target="_blank" class="btn btn-primary btn-lg" role="button">Main Site</a></p>
</div>
</div>
<ul class="posts">
{% for post in site.posts %}
{% assign author = site.authors[post.author] %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
{{post.title}}
<small>
<span>Posted on {{ post.date | date_to_string }} by
<a href="mailto:{{ author.email }}">{{ author.name }}</a>
</span>
</small>
</h3>
</div>
<div class="panel-body">
{{ post.description }}
</div>
<div class="panel-footer">
<a href="{{ post.url }}" class="btn btn-default">Read More</a>
</div>
</div>
{% endfor %}
</ul>
</div>