This repository has been archived by the owner on Sep 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 2.21 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
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PRESTO - Python Reservoir Simulation Toolbox</title>
<link rel="stylesheet" href="assets/css/variables.css">
<link rel="stylesheet" href="assets/css/nativize.css">
<link rel="stylesheet" href="assets/css/global.css">
<link rel="stylesheet" href="assets/css/about.css">
<link rel="stylesheet" href="assets/css/nav.css">
<link rel="stylesheet" href="assets/css/section.css">
<link rel="stylesheet" href="assets/css/demo.css">
<link rel="stylesheet" href="assets/css/github.css">
<link rel="import" href="sections/problem.html">
<link rel="import" href="sections/physical-model.html">
<link rel="import" href="sections/reservoir.html">
<link rel="import" href="sections/wells.html">
<link rel="import" href="sections/flux-condition.html">
<link rel="import" href="sections/numerical-methods.html">
</head>
<body>
<nav class="nav js-nav">
<header class="nav-header">
<h1 class="nav-title"><strong>PRESTO</strong></h1>
</header>
<div class="nav-item u-category-native-ui">
<button type="button" id="button-problem" data-section="problem" class="nav-button"><em>Problem</em></button>
<button type="button" id="button-physical-model" data-section="physical-model" class="nav-button"><em>Physical Model</em></button>
<button type="button" id="button-reservoir" data-section="reservoir" class="nav-button"><em>Reservoir Properties</em></button>
<button type="button" id="button-wells" data-section="wells" class="nav-button"><em>Wells</em></button>
<button type="button" id="button-flux-conditon" data-section="flux-condition" class="nav-button"><em>Flux Conditions</em></button>
<button type="button" id="button-numerical-methods" data-section="numerical-methods" class="nav-button"><em>Numerical Methods</em></button>
</div>
</nav>
<main class="content js-content"></main>
<script>
require('./assets/imports')
require('./assets/ex-links')
require('./assets/nav')
require('./assets/demo-btns')
require('./assets/code-blocks')
require('./assets/normalize-shortcuts')
const {siUnits, imperialUnits, fieldUnits, noUnits} = require('./units');
</script>
</body>
</html>