-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (65 loc) · 3.2 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
---
layout: default
cover: '/images/w7-kagayaki.webp'
ogp: '/images/w7-kagayaki-with-logo-opg.webp'
---
<div class="home">
{% capture currentDate %}{{'now' | date: '%s' }}{% endcapture %}
<div class="clearfix">
<h2 class="event-time-heading fix-top">次のイベント</h2>
{% for post in site.posts reversed %}
{% capture blogDate %}{{post.date | date: '%s' }}{% endcapture %}
{% if blogDate >= currentDate %}
<a href="{{ post.url | prepend: site.baseurl }}">
{% assign cover_url= '/images/w7-kagayaki.webp' | prepend: site.baseurl %}
{% if post.cover %}
{% assign cover_url= post.cover | prepend: site.baseurl %}
{% endif %}
<div class="event-sqaure" style="background-image:url({{cover_url}});">
<h2>{{ post.title }} <span>{{ post.date | date: "%Y年 %m月%-d日(%a)" }}</span></h2>
<div class='event-square-overlay'></div>
</div>
</a>
{% endif %}
{% endfor %}
</div>
<div class="clearfix">
<h2 class="event-time-heading">JAWS-UG北陸新幹線とは?</h2>
<div style="margin: 20px 20px 0 0;">
<p style="text-indent: 1em;">
北陸新幹線沿線の<a href="https://jaws-ug.jp">JAWS-UG</a>(AWSのユーザーグループ勉強会)のメンバーで合同勉強会を行おうという企画です。
</p>
<p style="text-indent: 1em;">
2024年3月16日北陸新幹線の福井県の敦賀(つるが)延伸を記念して第1回が行われました。そこからリレー形式で沿線を回って実施しています。
</p>
<p style="text-indent: 1em;">
北陸新幹線の延伸は、地域経済に新たな活力をもたらすと共に、関東含め北陸内外からの技術コミュニティへの更なるアクセスを提供します。
そのアクセスを活用し、全国から登壇者&参加者を募り、AWSに関する基礎知識から最先端の技術まで幅広いテーマを扱い、ビギナーから上級者までどなたでも参加できる勉強会を目指します。
</p>
</div>
</div>
<div class="clearfix">
<h2 class="event-time-heading">過去のイベント</h2>
{% for post in site.posts %}
{% capture blogDate %}{{post.date | date: '%s' }}{% endcapture %}
{% if blogDate < currentDate %}
{% if post.ext_url %}
{% assign post_url = post.ext_url %}
{% else %}
{% assign post_url = post.url | prepend: site.baseurl %}
{% endif %}
<a href="{{post_url}}">
{% if post.cover %}
{% assign cover_url= post.cover | prepend: site.baseurl %}
{% else %}
{% assign cover_url= '/images/w7-kagayaki.webp' | prepend: site.baseurl %}
{% endif %}
<div class="event-sqaure" style="background-image:url({{cover_url}});">
<h2>{{ post.title }} <span>{{ post.date | date: "%Y年 %m月%-d日(%a)" }}</span></h2>
<div class='event-square-overlay'></div>
</div>
</a>
{% endif %}
{% endfor %}
</div>
</div>