-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (40 loc) · 1.5 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
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Korrektur Tool</title>
<link rel="stylesheet" href="node_modules/node-syntaxhighlighter/lib/styles/shCore.css" />
<link rel="stylesheet" href="node_modules/node-syntaxhighlighter/lib/styles/shThemeDefault.css" />
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="node_modules/font-mfizz/dist/font-mfizz.css" />
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div id="root" class="full-height"></div>
<div class="modal fade" id="modal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Modal</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Schließen</button>
<button type="button" class="btn btn-primary">Ok</button>
</div>
</div>
</div>
</div>
<script>
const $ = require('jquery');
const Popper = require('popper.js');
require('bootstrap');
require('./index');
</script>
</body>
</html>