New page for bottles; some styling

This commit is contained in:
Thomas Smith 2022-12-15 13:25:51 -05:00
parent 7e7ff2966c
commit 5542cbc063
3 changed files with 35 additions and 1 deletions

View file

@ -32,7 +32,7 @@ function Bottles() {
{versions.length} version{versions.length === 1 ? "" : "s"} bottled
</h4>
{expanded && (
<table>
<table className="one-box-down">
<thead>
<tr>
<th>version</th>

5
src/content/bottles.md Normal file
View file

@ -0,0 +1,5 @@
---
title: "Bottles"
Description: "bottles"
layout: "bottles"
---

View file

@ -0,0 +1,29 @@
{{ define "main" }}
<section>
<div class="container">
<div class="row">
<div class="col">
{{- partial "bottle-grid.html" -}}
</div>
</div>
</div>
</section>
<style>
table{
color: #fff;
}
table, th, td {
border: 1px solid;
font-family: "sono", sans-serif;
padding: 20px;
}
</style>
{{ end }}