-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 2.07 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
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self' https://use.fontawesome.com https://stackpath.bootstrapcdn.com 'unsafe-inline' https://cdnjs.cloudflare.com;">
<title>Hello World!</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
</head>
<body>
<div class="view">
<nav class="navbar navbar-light bg-light">
<div id="back" class="navbar-toggler mr-2">
<i class="fa fa-arrow-left" aria-hidden="true"></i>
</div>
<div id="forward" class="navbar-toggler mr-2">
<i class="fa fa-arrow-right" aria-hidden="true"></i>
</div>
<div id="refresh" class="navbar-toggler mr-2">
<i class="fa fa-redo" aria-hidden="true"></i>
</div>
<form class="form-inline flex-grow-1">
<input id="url" class="form-control w-100" type="text" placeholder="URL" aria-label="URL">
</form>
</nav>
<webview id="foo" src="https://www.drupal.org/" autosize="on"></webview>
</div>
<script>window.$ = window.jQuery = require('jquery');</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</body>
</html>