This repository was archived by the owner on Mar 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (78 loc) · 2.38 KB
/
index.html
File metadata and controls
82 lines (78 loc) · 2.38 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>febLey</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="img/icons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="img/icons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="img/icons/favicon-16x16.png"
/>
<link rel="manifest" href="img/icons/site.webmanifest" />
<link
rel="mask-icon"
href="img/icons/safari-pinned-tab.svg"
color="#ff1493"
/>
<link rel="shortcut icon" href="img/icons/favicon.ico" />
<meta name="apple-mobile-web-app-title" content="febLey" />
<meta name="application-name" content="febLey" />
<meta name="msapplication-TileColor" content="#ff1493" />
<meta name="msapplication-config" content="img/icons/browserconfig.xml" />
<meta name="theme-color" content="#212121" />
<link
href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:700"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/normalize.css@8/normalize.min.css"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<body>
<div class="app">
<page suffix="home" v-show="selectedPage === 'Home'" key="home">
<h1 class="title">febLey</h1>
<ul class="tags">
<li class="tag">dev</li>
<li class="tag">games</li>
<li class="tag">fgc</li>
<li class="tag">日本語</li>
</ul>
<socialbar :channels="channels"></socialbar>
</page>
<div class="tabbar" v-if="pages.length > 1">
<button
class="tab"
v-for="page in pages"
@click="setSelectedPage(page)"
>
{{page}}
</button>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.min.js"></script>
<script src="main.js"></script>
</body>
</html>