forked from kuielab/kuielab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
seminar.html
executable file
·38 lines (36 loc) · 1019 Bytes
/
seminar.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
---
layout: default
section_id: seminar
---
<div class="full">
<div class="row">
<div class="large-12 columns">
<h2>Seminar</h2>
<div class="spacing"></div>
{% assign category = page.section_id %} {% for post in
site.categories[category] %}
<div class="big mod modBlogPost no_bg">
<div class="images">
{% for image in post.images %}
<div class="image"><img alt="" src="{{site.url}}/{{image}}" /></div>
{% endfor %}
</div>
<div class="content">
<h4><a href="{{post.url}}">{{post.title}}</a></h4>
<p class="excerpt">{{post.excerpt | strip_html }}</p>
<p class="info">
<span>{{post.date | date: "%Y.%m.%d" }}</span>
{% if post.author %}
<div>
by <b>{{post.author}}</b>
</div>
{% endif %}
</p>
</div>
</div>
<hr />
{% endfor %}
</div>
</div>
<div class="three spacing"></div>
</div>