-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathblog.html
47 lines (41 loc) · 1.51 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
46
47
---
layout: blog_front
title: "DeepInfer Blog"
description: "Using deep leanring for medical image computing and alanysis"
header-img: "img/deepinfer_blog.png"
---
<div class="container-fluid index">
<div class="row index all-posts">
<h1 class="header author-header">{{ site.author_name }}</h1>
<h2 class="header" itemprop="headline">Latest Articles</h2>
<hr>
{% for post in site.posts %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
{% if forloop.first %}
<div class="col-md-12 content-panel articles">
<h2 id="{{ this_year }}-ref">{{ this_year }}</h2>
<ul style="list-style: none;">
{% endif %}
<li>
<hr>
<a href="{{ post.url | prepend: site.baseurl }}"><img src="/{{ post.header-img | prepend: site.baseurl }}" class="img-responsive" alt="{{ post.title }}"></a>
<h3><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h3>
<small class="hidden-xs">{{ post.date | date: "%B %-d, %Y" }}</small>
</li>
{% if forloop.last %}
</ul>
</div>
{% else %}
{% if this_year != next_year %}
</ul>
</div>
<div class="col-md-12 content-panel articles">
<h2 id="{{ next_year }}-ref">{{next_year}}</h2>
<ul style="list-style: none;">
</ul>
{% endif %}
{% endif %}
{% endfor %}
</div>
</div>