-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathintel.tt2
More file actions
35 lines (31 loc) · 1.15 KB
/
Copy pathintel.tt2
File metadata and controls
35 lines (31 loc) · 1.15 KB
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
[%- PROCESS header.tt2 -%]
[%- PROCESS instances_header.tt2 -%]
<h1>Google Compute Engine Machine Types with Intel CPU Platform</h1>
[%- countIntel = 0; FOREACH instance IN instances; IF instance.intel; countIntel = countIntel + 1; END; END -%]
<blockquote class="blockquote">
<p>
There are <mark>[% countIntel %]</mark> Google Compute Engine machine types with Intel central processing unit (CPU) available.
Not every GCE machine type with Intel CPU is available in every Google Cloud region.
</p>
</blockquote>
<p><a class="btn btn-success" href="/grid.html?platform=intel" role="button">✅ Instance Picker with filter on CPU Platform</a></p>
<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>
[%- instancePlatformTh() -%]
</thead>
<tbody>
[%- FOREACH instance IN instances; IF instance.intel; instancePlatformTr(instance); END; END -%]
</tbody>
</table>
</div> <!-- // table-responsive -->
[% PROCESS footer.tt2 %]