From 12dce58e969b24bccd4640f4de73bbba4027a4d5 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Nov 27 2024 17:12:46 +0000 Subject: fix: 🐛 enable datatables for aws-images table presentation Previously, the datatables plugin was not enabled for the aws-images page causing the deploy link table not to be searchable. This commit enables datatables plugin in aws-images page and updates table presentation accordingly. --- diff --git a/download/aws-images.md b/download/aws-images.md index 074eb26..e724e23 100644 --- a/download/aws-images.md +++ b/download/aws-images.md @@ -1,5 +1,7 @@ --- title: "CentOS AWS AMI Cloud Images" + +with_datatables: true --- CentOS Amazon AMI images @@ -21,7 +23,7 @@ Worth knowing that starting from CentOS Stream 9 the cloud user is `ec2-user` wh - +
@@ -34,21 +36,21 @@ Worth knowing that starting from CentOS Stream 9 the cloud user is `ec2-user` wh {% for row in site.data.aws-images %} - - - - - + + + + + + {% endfor %} - - - - - - - - -
Version
{{ row["Version"] }}{{ row["Region"] }}{{ row["Architecture"] }}{{ row["AMI ID"] }} Deploy link{{ row["Version"] }}{{ row["Region"] }}{{ row["Architecture"] }}{{ row["AMI ID"] }} + {% assign row_deploy_link = row["Deploy link"] %} + {% include base/link.html + name="Deploy link" + class="btn btn-sm btn-primary" + icon="fa-brands fa-aws" + icon_position="start" + url=row_deploy_link + %}