-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
35 lines (30 loc) · 1022 Bytes
/
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
@extends("/_layouts/base.html")
@section("main")
<div class="acms-container">
<main class="main">
<div class="acms-grid">
<div class="container-md">
<!-- タグフィルター -->
@include("/include/tag/filter.html")
<!-- サマリー:記事一覧 -->
@include("/include/entry/summary.html",{"module_id": "summary_index_date"})
</div>
</div>
</main>
</div>
@endsection
@section("side")
<section class="acms-container">
<h3 class="heading-md heading-line">他の方法で記事を探す</h3>
<div class="section-side-grid">
<!-- BEGIN_MODULE Touch_NotCategory -->
<!-- カテゴリー:リスト表示 -->
@include("/include/category/list_side.html", {"module_id": "category_list"})
<!-- END_MODULE Touch_NotCategory -->
<!-- BEGIN_MODULE Touch_NotTag -->
<!-- タグ:リスト表示 -->
@include("/include/tag/list_side.html", {"module_id": "tag_cloud"})
<!-- END_MODULE Touch_NotTag -->
</div>
</section>
@endsection