From 9e55c0afdb3d4781ddec71d1973290ea4027ed4b Mon Sep 17 00:00:00 2001
From: Mariano Montone <marianomontone@gmail.com>
Date: Thu, 11 Oct 2018 01:32:51 -0300
Subject: [PATCH] Download page: implementations in columns (to save vertical
 space)

---
 content/downloads.html | 49 ++++++++++++++++++++++++++----------------
 1 file changed, 31 insertions(+), 18 deletions(-)

diff --git a/content/downloads.html b/content/downloads.html
index da65349..5ff6b72 100644
--- a/content/downloads.html
+++ b/content/downloads.html
@@ -14,31 +14,44 @@
 
 <p>Two popular <em>open source</em> ones are Steel Bank Common Lisp (SBCL) and Clozure Common Lisp (CCL):</p>
 
-<b>Steel Bank Common Lisp (SBCL)</b>
-<ul>
-    <li><a href="http://www.sbcl.org/">Main website</a></li>
-    <li><a href="http://www.sbcl.org/platform-table.html">Download&nbsp;&nbsp;<i class="fa fa-download"></i></a></li>
-    <li><a href="http://www.sbcl.org/getting.html">Install</a></li>
-</ul>
+<div class="row">
 
+    <div class="col-md-4">
 
-<b>Clozure Common Lisp (CCL)</b>
-<ul>
-    <li><a href="http://ccl.clozure.com/">Main website</a></li>
-    <li><a href="http://ccl.clozure.com/download.html">Download/Install&nbsp;&nbsp;<i class="fa fa-download"></i></a></li>
-</ul>
+        <b>Steel Bank Common Lisp (SBCL)</b>
+        <ul>
+            <li><a href="http://www.sbcl.org/">Main website</a></li>
+            <li><a href="http://www.sbcl.org/platform-table.html">Download&nbsp;&nbsp;<i class="fa fa-download"></i></a></li>
+            <li><a href="http://www.sbcl.org/getting.html">Install</a></li>
+        </ul>
+    </div>
 
+    <div class="col-md-4">
+
+        <b>Clozure Common Lisp (CCL)</b>
+        <ul>
+            <li><a href="http://ccl.clozure.com/">Main website</a></li>
+            <li><a href="http://ccl.clozure.com/download.html">Download/Install&nbsp;&nbsp;<i class="fa fa-download"></i></a></li>
+        </ul>
+    </div>
+
+</div>
 
 <p>There are also powerful <em>commercial</em> implementations:</p>
 
-<b>Allegro CL</b><br/>
-<a href="https://franz.com/products/allegro-common-lisp/">Allegro CL ®</a> <span class="small"> (sponsored link)</span> is a very powerful dynamic object-oriented development system especially suited to enterprise-wide, complex application development.
-<ul>
-    <li><a href="https://franz.com/products/allegro-common-lisp/">Main website</a></li>
-    <li><a href="http://www.franz.com/">Company website</a></li>
-    <li><a href="https://franz.com/downloads/clp/survey">Free download&nbsp;&nbsp;<i class="fa fa-download"></i></a></li>
-</ul>
+<div class="row">
 
+    <div class="col-md-4">
+
+        <b>Allegro CL</b><br/>
+        <a href="https://franz.com/products/allegro-common-lisp/">Allegro CL ®</a> <span class="small"> (sponsored link)</span> is a very powerful dynamic object-oriented development system especially suited to enterprise-wide, complex application development.
+        <ul>
+            <li><a href="https://franz.com/products/allegro-common-lisp/">Main website</a></li>
+            <li><a href="http://www.franz.com/">Company website</a></li>
+            <li><a href="https://franz.com/downloads/clp/survey">Free download&nbsp;&nbsp;<i class="fa fa-download"></i></a></li>
+        </ul>
+    </div>
+</div>
 
 <p>Look <a href="/implementations">here</a> for other Common Lisp compilers.</p>
 
-- 
GitLab