-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.21 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
---
layout: default
---
<div class="home">
{% assign curDate = site.time | date: '%s' %}
{% assign numberSeriesOffset = site.number_series.size | minus: 10 %}
<h2>今後の予定</h2>
<ul class="post-list">
{% for item in site.number_series %}
{% assign postStartDate = item.date | date: '%s' %}
{% if postStartDate >= curDate %}
<li>
<span class="post-meta">{{ item.date | date: "%Y年%m月%-d日" }}</span>
<h2>
<a class="post-link" href="{{ item.url | prepend: site.baseurl }}">{{ item.title }}</a>
</h2>
</li>
{% endif %}
{% endfor %}
</ul>
<h2>終了した勉強会</h2>
<ul class="post-list">
{% for item in site.number_series reversed offset:numberSeriesOffset %}
{% assign postStartDate = item.date | date: '%s' %}
{% if postStartDate <= curDate %}
<li>
<span class="post-meta">{{ item.date | date: "%Y年%m月%-d日" }}</span>
<h2>
<a class="post-link" href="{{ item.url | prepend: site.baseurl }}">{{ item.title }}</a>
</h2>
</li>
{% endif %}
{% endfor %}
</ul>
<p><a href="/ns/">もっと見る</a></p>
<!--<p class="rss-subscribe"><a href="{{ " /feed.xml " | prepend: site.baseurl }}">RSSフィード</a></p>-->
</div>
{% include sponsor.html %}