-
Notifications
You must be signed in to change notification settings - Fork 2
/
custlistframework1.html
36 lines (28 loc) · 971 Bytes
/
custlistframework1.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>@App.Title</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
@Import style.css
</style>
</head>
<body>
<div class="container px-5">
<div class="row">
<div class="col-md-12">
<h2 class="text-center text-primary">@App.Title</h2>
<h4 class="text-center text-primary">Version @App.Version</h4>
</div>
</div>
<div class="col-lg-12 bg-light justify-content-center shadow p-3 mb-5 bg-body rounded">
@RenderBody
</div>
<div><p> </p></div>
<div class="text-secondary"><em>Customer Manager for WebStencils</em></div>
</body>
</html>