rbowen / centos / centos.org

Forked from centos/centos.org 4 years ago
Clone
Blob Blame History Raw
---
title:      "CentOS Cloud Images"
markdown:   basic
is_dynamic: true
has_toc:    true
layout: page-download-mirror
permalink: /:path/:basename/index.html

---
Amazon AMI information here
===========================

Basic info on Amazon images here

<input type="text" id="myInput" onkeyup="myFunction()" placeholder="Search for image...">

<table id="myTable" class="table table-borderless">
<thead class="thead-dark">
  <tr>
    <th class="col-1">Version</th>
    <th class="col-1">Region</th>
    <th class="col-1">Architecture</th>
    <th class="col-7">AMI ID</th>
    <th class="col-1 text-nowrap">Deploy link</th>
  </tr>
</thead>
<tbody>
{% for row in site.data.aws-images %}
  <tr>
    <td>{{ row["Version"] }}</td>
    <td>{{ row["Region"] }}</td>
    <td>{{ row["Architecture"] }}</td>
    <td>{{ row["AMI ID"] }}</td>
    <td class="text-nowrap"><a href="{{ row["Deploy link"] }}"><i class="fab fa-aws"></i> Deploy link</a></td>
  </tr>
{% endfor %}
</tbody>
</table>