-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (121 loc) · 4.22 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
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/static/index.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite Ts Bulma Sass Template</title>
</head>
<body>
<section class="hero is-primary is-large">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title is-1">Vite Ts Bulma Sass Template</h1>
<p
class="subtitle mt-5 is-flex is-flex-wrap-wrap is-justify-content-center is-align-items-center"
style="column-gap: 0.2rem"
>
This is a development template based on
<span class="tag is-primary is-light is-rounded">Vite</span>
configured with
<span class="tag is-primary is-light is-rounded">TypeScript</span>,
<span class="tag is-primary is-light is-rounded">Sass</span>,
<span class="tag is-primary is-light is-rounded">Bulma</span>, and
more.
</p>
<div class="columns is-centered is-1 mt-6">
<div class="column is-narrow">
<a href="https://nodejs.org/en/">
<img
src="https://img.shields.io/badge/Node.js-22.4.1-5FA04E.svg?logo=node.js&style=flat"
alt="Node.js"
/>
</a>
</div>
<div class="column is-narrow">
<a href="https://pnpm.io/ja/">
<img
src="https://img.shields.io/badge/pnpm-333.svg?logo=pnpm&style=flat"
alt="pnpm"
/>
</a>
</div>
<div class="column is-narrow">
<a href="https://ja.vitejs.dev/">
<img
src="https://img.shields.io/badge/Vite-5.4.1-646CFF.svg?logo=vite&style=flat"
alt="Vite"
/>
</a>
</div>
<div class="column is-narrow">
<a href="https://biomejs.dev/">
<img
src="https://img.shields.io/badge/Biome-1.8.3-60A5FA.svg?logo=biome&style=flat"
alt="Biome"
/>
</a>
</div>
<div class="column is-narrow">
<a href="https://stylelint.io/">
<img
src="https://img.shields.io/badge/Stylelint-16.8.2-263238.svg?logo=stylelint&style=flat"
alt="Stylelint"
/>
</a>
</div>
<div class="column is-narrow">
<a href="https://www.typescriptlang.org/">
<img
src="https://img.shields.io/badge/TypeScript-333.svg?logo=typescript&style=flat"
alt="TypeScript"
/>
</a>
</div>
<div class="column is-narrow">
<a href="https://bulma.io/">
<img
src="https://img.shields.io/badge/Bulma-333.svg?logo=bulma&style=flat"
alt="Bulma"
/>
</a>
</div>
<div class="column is-narrow">
<a href="https://sass-lang.com/">
<img
src="https://img.shields.io/badge/Sass-333.svg?logo=sass&style=flat"
alt="Sass"
/>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="field">
<div class="control">
<input class="input" type="text" placeholder="Input" />
</div>
</div>
<div class="field">
<p class="control">
<span class="select">
<select>
<option>Select dropdown</option>
<option>option 1</option>
<option>option 2</option>
</select>
</span>
</p>
</div>
<div class="buttons">
<a class="button is-primary">Primary</a>
<a class="button is-link">Link</a>
</div>
</div>
</section>
<script type="module" src="/static/index.js"></script>
</body>
</html>