-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathinstances.tt2
More file actions
32 lines (29 loc) · 801 Bytes
/
Copy pathinstances.tt2
File metadata and controls
32 lines (29 loc) · 801 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
30
31
32
[%- PROCESS header.tt2 -%]
[%- PROCESS instances_header.tt2 -%]
<h1>Google Compute Engine Machine Types</h1>
<blockquote class="blockquote">
<p>
There are <mark>[% instances.size %]</mark> Google Compute Engine machine types in total.
Not every Google Cloud VM is available in every region.
</p>
</blockquote>
<div class="table-responsive">
[%- PROCESS instances_tr.tt2; -%]
<table
class="table table-sm table-hover table-bordered"
data-classes="table table-sm table-hover table-bordered"
data-toggle="table"
data-sort-name="vcpu"
data-sort-order="asc"
data-sortable="true"
data-sticky-header="true"
>
<thead>
[%- instanceTh() -%]
</thead>
<tbody>
[%- FOREACH instance IN instances; instanceTr(instance); END -%]
</tbody>
</table>
</div> <!-- // table-responsive -->
[% PROCESS footer.tt2 %]