-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 855 Bytes
/
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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="index.css">
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<title>Mailto Redirect France - Redirigez les liens mailto vers le webmail de votre FAI</title>
</head>
<body>
<div id="app">
<router-view :services="services"></router-view>
</div>
<script type="text/x-template" id="index-template">
<div>
<div id="title">
Utilisez la boite mail de votre FAI pour ouvrir les liens mailto !
</div>
<div class="circle_container">
<div v-for="service in services" class="circle" :id="service.id" :title="service.name" @click="registerService(service)"></div>
</div>
</div>
</script>
<script src="index.js"></script>
</body>
</html>