summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2021-05-29 15:05:44 -0500
committerZach van Rijn <me@zv.io>2021-05-29 15:05:44 -0500
commit4d9724e7cdb66195a6e3a93c3d456f4ab16a364e (patch)
treeaf2489df6028705f40674ec2ed4fad5ac6f4e0b6
parent7b71e36972337da21ee8bdb033039e8ffe8028d3 (diff)
downloadsite-ng-4d9724e7cdb66195a6e3a93c3d456f4ab16a364e.tar.gz
site-ng-4d9724e7cdb66195a6e3a93c3d456f4ab16a364e.tar.bz2
site-ng-4d9724e7cdb66195a6e3a93c3d456f4ab16a364e.tar.xz
site-ng-4d9724e7cdb66195a6e3a93c3d456f4ab16a364e.zip
Fix missing span tag end.
-rw-r--r--src/download/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/download/index.html b/src/download/index.html
index 017a4fb..8452873 100644
--- a/src/download/index.html
+++ b/src/download/index.html
@@ -102,15 +102,15 @@ __HEADER__
<p><small>CPU</small></p>
</div>
<div class="stepwizard-step col-xs-3">
- <a href="#step-2" type="button" class="btn btn-outline-dark btn-circle text-dark" disabled="disabled"><span class="ti-palette"></a>
+ <a href="#step-2" type="button" class="btn btn-outline-dark btn-circle text-dark" disabled="disabled"><span class="ti-palette"></span></a>
<p><small>Flavor</small></p>
</div>
<div class="stepwizard-step col-xs-3">
- <a href="#step-3" type="button" class="btn btn-outline-dark btn-circle text-dark" disabled="disabled"><span class="ti-desktop"></a>
+ <a href="#step-3" type="button" class="btn btn-outline-dark btn-circle text-dark" disabled="disabled"><span class="ti-desktop"></span></a>
<p><small>Desktop</small></p>
</div>
<div class="stepwizard-step col-xs-3">
- <a href="#step-4" type="button" class="btn btn-outline-dark btn-circle" disabled="disabled"><span class="ti-download"></a>
+ <a href="#step-4" type="button" class="btn btn-outline-dark btn-circle" disabled="disabled"><span class="ti-download"></span></a>
<p><small>Download</small></p>
</div>
</div>