-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (85 loc) · 2.38 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
---
title: "startguide"
---
<!DOCTYPE html>
<html lang="ja" dir="ltr">
<head>
<meta charset="utf-8">
<title>STARTGUIDE.jp</title>
{% include head.html %}
</head>
<body>
{% include header.html %}
<!--上部バナー-->
<div class="jumbotron">
<div class="container">
<h1 class="col-12 title call red">
はじめの一歩を、踏み出そう。
</h1>
<p class="lead col-md-12 title red">
STARTGUIDE.jpはあなたのはじめの一歩を支援します。
</p>
<div class="row">
<a class="btn btn-success title" href="https://startguide.jp/12/22/44" role="button">はじめよう</a>
</div>
</div>
</div>
<!-- 上部バナー終わり -->
<!-- mainbook -->
<div class="container">
<div class="card-deck">
{% for book in site.data.book %}
<div class="col-xl-4 col-lg-6 col-md-6 col-sm-12 col-12">
<a href="https://startguide.jp/book/book{{ book.bookid }}.html">
<div class="card">
<img src="media/book{{book.bookid}}.png" alt="{{book.name}}" class="book card-img-top">
</div>
</a>
</div>
{%endfor%}
</div>
</div>
<div class="container">
<div class="row title">
<div class="title margin">
<h1>コミュニティ ☕</h1>
<p>STARTGUIDE.jpのメンバー同士での交流によって、新しい世界を観測することができます。</p>
</div>
</div>
<div class="row title">
<div class="title">
<ul>
<li>
<h2><a href="https://github.com/startguide"> GitHubリポジトリ</a></h2>
</li>
<li>
<h2>Slackユーザコミュニティ</h2>
</li>
</ul>
</div>
</div>
</div>
<!-- mainnbookここまで -->
<div class="container">
<div class="row title">
<div class="title">
<h1>ニュース🗞</h1>
</div>
</div>
<div class="row title">
<div class="title">
{% for post in site.posts %}
<a href="{{ post.url }}">
<h3>{{ post.title }}</h3>
</a>
<!-- <p>{% if post.desc %}{{ post.desc }}{% else %}{{ post.content | strip_html | truncate: 130 }}{% endif %}</p> -->
{% endfor %}
</div>
</div>
</div>
<!--footer-->
{% include ads.html %}
{% include footer.html %}
{% include script.html %}
</body>
</html>