-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 997 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
31
32
---
layout: default
title: The Leada Blog - Company News, Tips, and Features
---
<div class="container full-container card-container">
{% for post in site.posts %}
<div class="row card">
{% assign author = site.leadas[post.author] %}
<div class="col-md-2">
<div class="author-info">
<img src="/assets/images/leadas/{{ author.photo }}" class="author-image"></img>
<h4>{{ author.name }}</h4>
</div>
<a href="{{ post.url }}"> {{ post.date | date_to_string }}</a><br>
<a href="{{ post.url }}#comments" data-disqus-identifier="{{ post.path | split:'/' | last | cgi_escape }}">Leave a comment</a>
</div>
<div class="col-md-10">
<h1>
<a href="{{ post.url }}">{{ post.title }}</a>
</h1>
<div class="post-content">
{{ post.excerpt }}
</div>
<div class="read-more">
<a href="{{ post.url }}" class="flat-button full-width">Read More</a>
</div>
</div>
</div>
{% endfor %}
</div>