-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (41 loc) · 1.76 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
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>OpenFOAM Code Cheats</title>
<!--<meta http-equiv="Content-Security-Policy" content=" script-src 'sha256-Ny+2bJPvZiwGbrXifi6aaiDxjxPQj4sYhe89qPQ8Km4=' 'sha256-itepCgybOEkFtCBSP9lDl0dTV9F8tnaOpwMmTBuCxng='">-->
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'sha256-Ny+2bJPvZiwGbrXifi6aaiDxjxPQj4sYhe89qPQ8Km4='; object-src 'self'">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap-modified.min.css">
<link rel="stylesheet" href="node_modules/@glorious/demo/dist/gdemo.min.css">
<link rel="stylesheet" href="prism-themes/themes/prism-vs.css">
<link rel="stylesheet" href="css/styles.css">
<!-- Scripts -->
<script>delete module.exports;</script>
<script src="node_modules/prismjs/components.js"></script>
<script src="node_modules/@glorious/demo/dist/gdemo.min.js"></script>
<script src="./jquery-3.2.1.js"></script>
<script src="./window.js" charset="utf-8"></script>
</head>
<body>
<div id="container" class="container-fluid">
<div id="code-container">
<!-- The overlay -->
<div id="default-page" class="overlay">
<!-- Overlay content -->
<div class="overlay-content">
<h1>OpenFOAM Code/Case Examples for the Reservoir Engineering Course</h1>
<p>Press Ctrl+f to start searching ...</p>
</div>
</div>
</div>
<!-- Input row -->
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 ">
<!--<h3 class="hash-heading">Input</h3>-->
<textarea rows="1" id="text-input" class="form-control text-input" placeholder="Search for OpenFOAM cheats..."></textarea>
</div>
</div>
</div>
</body>
</html>