-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjiman_text.html
56 lines (50 loc) · 1.68 KB
/
jiman_text.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
---
layout: default
---
<div class="post-head">
<h2>Dojo自慢</h2>
</div>
<div class="post">
<h1 class="post-title">{{ page.title }}</h1>
{% if page.categories[0] == "news" %}
<p class="post-date">{{ page.date | date:"%Y.%-m.%-d" }}</p>
{% elsif page.categories[0] == "workshop" or page.categories[0] == "session" %}
<div class="tags">
{% for tag in page.tags %}
<span class="tag-post">{{ tag }}</span>
{% endfor %}
</div>
<p class="post-time">{{ page.time }}</p>
{% endif %}
<div class='post-content mt-5'>
{% if page.thumbnail %}
<img src="/img/post/{{ page.thumbnail }}" alt='サムネイル画像' />
{% else %}
<img src="/img/ogp_1.png" alt='サムネイル画像' />
{% endif %}
{{ content }}
<div id="spacer" style="height: 2em;"></div>
<hr>
<div class="row">
<div class="col-2">
<div class="col">
{% if page.dojo_icon %}
<img src="https://coderdojo.jp/img/dojos/{{ page.dojo_icon }}" alt='各 Dojo のロゴ画像' />
{% elsif page.dojo_iconfile %}
<img src="/img/post/jiman/{{page.dojo_iconfile}}" alt='Dojo アイコン' />
{% else %}
<img src="/img/coderdojo.png" alt='CoderDojo ロゴ画像' />
{% endif %}
</div>
</div>
<div class="col-10">
<p class="text-left font-weight-bold h4">{{ page.dojo_name }}</p>
<p class="text-left">{{ page.dojo_desciption }}</p>
</div>
</div>
<div id="spacer" style="height: 2em;"></div>
<a href="/dojos" class="btn btn-red"><i class="fas fa-chevron-circle-left"></i> 一覧に戻る</a>
<br />
{% include back-to-top.html %}
</div>
</div>