-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (78 loc) · 2.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
layout: default
---
<section class="hero is-fullheight p-hero">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title has-text-white p-hero-title">
<span>プラレールを、</span>
<span>ハックしよう。</span>
</h1>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="columns">
<div class="column">
<div class="mb-6">
<div class="content">
<h3>東京大学プラレーラーズとは?</h3>
<p>
<strong>プラレールをハック</strong>して<strong>現実の鉄道システムを再現</strong>するエンジニアサークルです。
現在、修士6名・学部3名の計9名で主に本郷キャンパスにて活動しています。
</p>
</div>
</div>
<div class="mb-6">
<div class="content">
<h3>第74回駒場祭</h3>
<p>
第74回駒場祭に参加します。駒場祭公式HPは<a href="https://www.komabasai.net/74/visitor/">こちら</a><br><br>
日時:2023年11月24(金), 25(土), 26(日)<br>
会場:東京大学駒場キャンパス<br>
テーマ:coming soon...<br>
<br>
</p>
</div>
</div>
{% if site.posts.size > 0 %}
<div class="mb-6">
<div class="content">
<h3>最新の記事</h3>
</div>
<div class="columns is-multiline">
{% for post in site.posts %}
<div class="column is-4-desktop is-6-tablet">
<a class="card is-block" href="{{ post.url }}">
<div class="card-image">
<figure class="image is-4by3">
{% if post.image %}
<img src="{{ post.image }}" alt="" class="p-is-cover">
{% else %}
<img src="/assets/img/logo.jpg" alt="" class="p-is-cover">
{% endif %}
</figure>
</div>
<div class="card-content">
<p class="subtitle">
{{ post.title }}
</p>
<div class="content has-text-right">
<time datetime="{{ post.date | date: "%Y-%m-%d" }}">{{ post.date | date: "%Y/%m/%d" }}</time>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
<div class="content has-text-right">
<a href="/posts/">記事一覧</a>
</div>
</div>
{% endif %}
</div>
{% include right_column.html %}
</div>
</div>
</section>