-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.17 KB
/
Copy pathindex.html
File metadata and controls
27 lines (27 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>AmbersDamon</title>
<link rel="icon" type="image/x-icon" href="./img/AD.png">
<link rel="stylesheet" type="text/css" href="./index.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
</head>
<body>
<img src="/img/zip/index-bg.jpg" class="background-image">
<div class="main-containt" id="app">
<div class="header">
<div class="first-title">Amber's Damon</div>
<div class="language-menu">
<div class="language-item" v-on:click="changeLanguage('Chinese')">中文</div> /
<div class="language-item" v-on:click="changeLanguage('English')">English</div>
</div>
</div>
<div class="main-menu">
<a class="main-menu-item" v-for="item in languagePack[language].menu" v-bind:href="item.href" target="_blank">{{item.name}}</a>
</div>
</div>
<script src="./index.js"></script>
<footer class="footer">京ICP备18026581号</footer>
</body>
</html>