-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathindex.html
executable file
·52 lines (44 loc) · 1.42 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
46
47
48
49
50
51
52
---
layout: default
title: Ehcache Blog
headline: Read all blog posts about Ehcache, the most widely used Java caching library
---
<br/>
<div class="container-fluid">
<div class="row row-offcanvas row-offcanvas-left">
<!-- sidebar -->
<div class="col-sm-3 sidebar-offcanvas" id="sidebar" role="navigation">
</div>
<!-- main area -->
<div class="col-xs-12 col-sm-9">
<header class="post-header">
</header>
<article class="post-content">
<ul class="post-list">
{% for post in site.categories.blog %}
{% if post.hidden != true %}
<li class="entry">
<article>
<div style="float: left">
<img src="{{ site.data.authors[post.author].avatar }}" class="bio-photo" alt="{{ site.data.authors[post.author].name }} bio photo"></a>
</div>
<div>
<div>
<span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %d, %Y" }}</time></span>
</div>
<div>
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
</div>
<div>
<p>{{ post.headline }}</p>
</div>
</div>
</article>
</li>
{% endif %}
{% endfor %}
</ul>
</article>
</div>
</div>
</div>