-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
33 lines (29 loc) · 945 Bytes
/
blog.html
File metadata and controls
33 lines (29 loc) · 945 Bytes
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
---
layout: page
title: 合宿ブログ
hero_image: /image/banners/banner_blog.png
hero_height: is-medium
---
<h3 class="block">
<span class="icon-text has-text-info-dark">
<span class="icon">
<i class="fas fa-blog"></i>
</span>
<span>合宿ブログ</span>
</span>
</h3>
<div class="notification is-info is-light">
旧サイトの「合宿ブログ」は、<a href="https://old.rubycamp.jp/blog/">こちら</a>からご覧できます。
</div>
<div class="notification is-danger is-light">
現在新規ブログの更新は行なっていませんが、ご参考までにご覧ください。
</div>
{% assign blog_by_date = site.blog | sort: "date" %}
{% for blog in blog_by_date reversed %}
<hr class="title-list"/>
<div class="title-list">
<small>{{ blog.date | date: "%Y年%m月%d日" }}</small><br/>
<a href="{{ blog.url }}">{{ blog.title }}</a>
</div>
{% endfor %}
<hr class="title-list-last"/>