-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.3 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
<html>
<head>
<link rel="manifest" href="manifest.json" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/3.3.9/vue.global.min.js" integrity="sha512-01DXK8J/RTf+INWJaGSa1a8ePsny+wTV63r5e+qcW4Gx7cgYKeX7uNvJminP4WvBthCi03aWdTmGLcZk/DTKKQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.fluid.classless.min.css">
<link href="src/styles.css" rel="stylesheet">
</head>
<body>
<header>
<hgroup>
<h1>Online Dub-Finder</h1>
<h2>Inspect two or more folders for duplicate files with your browser. Don't choose sensitive files.</h2>
</hgroup>
</header>
<main>
<div id="app"></div>
</main>
<footer>
<small>Built with <a href="https://github.com">Github</a> •
<a href="https://github.com/reinerBa/duplicate-finder-online">Source code</a>
</small>
</footer>
<script>
navigator.serviceWorker && navigator.serviceWorker.register('./sw.js').then(function(registration) { console.log('Excellent, registered with scope: ', registration.scope);});
</script>
<script type="module">
import app from './src/app.js'
const {createApp} = Vue;
createApp(app).mount('#app');
</script>
</body>
</html>