-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (47 loc) · 1.94 KB
/
Copy pathindex.html
File metadata and controls
56 lines (47 loc) · 1.94 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Electron Template</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<style>
/* prevents seeing those {{variable}} before Vue.js is ready to render */
[v-cloak] {
display: none;
}
</style>
<script>
const pjson = require('./package.json')
document.title = `Electron Template v${pjson.version}`
</script>
</head>
<body>
<div id="app" v-cloak>
<div class="container">
<div class="row">
<h2>{{message}}</h2>
</div>
<div class="row well well-sm">
<a href="#" v-on:click="button" class="btn btn-primary">{{buttonText}}</a>
</div>
</div>
</div>
<!--
Insert this line above script imports
this is done to make sure that jQuery and others are imported properly
-->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script src="https://unpkg.com/vue"></script>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="js/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</body>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</html>