-
Notifications
You must be signed in to change notification settings - Fork 6
/
index2.html
40 lines (31 loc) · 1.08 KB
/
index2.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
---
layout: develop
---
<script src="/button.js"></script>
<h1>ここは、開発者用のページです!!</h1>
<!-- ndxbn 2018-10-22 this comment is label to assert deploy -->
<!-- メインコンテンツよりも手前のレイヤーに表示するもの ここから -->
<button type="button" id="stop-button" class="stop-button">とめる?</button>
<div class="go-to-article-index"><a href="#article-index">配信の一覧へ</a></div>
<!-- メインコンテンツよりも手前のレイヤーに表示するもの ここまで -->
<br>
<header>
{% include header.html %}
</header>
<a href="/events.html">過去のグッズや連載などは、 /events.html</a>
{% include contents.html %}
<hr style="margin: 1em 0 ;">
{%- include go-to/top.html -%}
<div id="article-index" class="article-index">
{%- include go-to/top.html -%}
<div>
<ul>
{%- for post in site.posts reversed -%}
<li><a href="/#{{ post.id }}">{{ post.date | date: "%Y/%m/%d" }}: {{ post.slug }}</a></li>
{%- endfor -%}
</ul>
</div>
</div>
<footer>
{% include footer.html %}
</footer>