-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathgrid.tt2
More file actions
29 lines (29 loc) · 991 Bytes
/
Copy pathgrid.tt2
File metadata and controls
29 lines (29 loc) · 991 Bytes
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
<!doctype html>
<html lang="en">
<head>
<title>GCE Instance Picker</title>
<link rel="canonical" href="[% site.url %]/grid.html">
[% PROCESS favicon.tt2 %]
<link rel="stylesheet" href="[% site.agGrid.css %]">
<link rel="stylesheet" href="[% site.agGrid.theme %]">
<style>
html { width: 100%; height: 100%; }
body { width: 100%; height: 100%; margin: 0; padding: 0; }
.frequency::after { content: " GHz"; }
.currency::before { content: "$"; }
.percent::after { content: "%"; }
.bandwidth::after { content: " Gbps"; }
.diskSize::after { content: " TB"; }
.memory::after { content: " GB"; }
.warning::before { content: "⚠️ "; }
.sharedCpu::after { content: " (shared)"; }
</style>
<meta charset="utf-8">
<meta name="robots" content="noindex, nofollow">
<script src="[% site.agGrid.js %]"></script>
</head>
<body>
<div id="myGrid" class="ag-theme-balham" style="height: 100%; width:100%"></div>
<script src="main.js?[% timestamp %]"></script>
</body>
</html>