-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (99 loc) · 3.68 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
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TikChoco Online Dashboard</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="css/top.css">
</head>
<body>
<header>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="./">
<img src="https://tik-choco.github.io/tikchoco-connect/img/cropped-i0-1.webp" height="28">
TikChocoOnline
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item">
Home
</a>
<a class="navbar-item">
Documentation
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
More
</a>
<div class="navbar-dropdown">
<a class="navbar-item">
About
</a>
<a class="navbar-item">
Jobs
</a>
<a class="navbar-item">
Contact
</a>
<hr class="navbar-divider">
<a class="navbar-item">
Report an issue
</a>
</div>
</div>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<a class="button is-primary">
<strong>Sign up</strong>
</a>
<a href="https://tik-choco.github.io/app/login" class="button is-light">
Log in
</a>
</div>
</div>
</div>
</div>
</nav>
</header>
<div class="wrapper">
<h1 class="title is-1">TikChoco Online Dashboardへようこそ。</h1>
<h1>お知らせ</h1>
<ul class="slider">
<li><a href="#"><span>2021.11.01</span>1つめのニュースの記事です。</a></li>
<li><a href="#"><span>2021.11.02</span>2つめのニュースの記事です。</a></li>
<li><a href="#"><span>2021.11.03</span>3つめのニュースの記事です。</a></li>
</ul>
<!--/wrapper--></div>
<footer id="footer" class="footer">
<div class="content has-text-centered">
<p>
© Copyright:
<a class="text-dark" href="https://tc.tik-choco.com/">TikChoco </a>All Rights Reserved.
</p>
<a href="https://bulma.io">
<img
src="https://bulma.io/images/made-with-bulma.png"
alt="Made with Bulma"
width="128"
height="24">
</a>
</div>
</footer>
</body>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bxslider/4.2.15/jquery.bxslider.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick.min.js"></script>
<script src="js/page.js" ></script>
<script src="js/flickity.pkgd.min.js" ></script>
<script src="js/footer.js" ></script>
</html>