Redesign progress

This commit is contained in:
Marc Riera Irigoyen 2022-08-30 00:50:54 +02:00
parent fd30647d80
commit d02bda55d3
17 changed files with 217 additions and 12 deletions

View file

@ -1,6 +1,11 @@
## Overview
<table>
<table class="datatable">
<colgroup>
<col class="col-pic">
<col class="col-headers">
<col class="col-data">
</colgroup>
<tr>
<td rowspan="0" id="image">{{ if (index .Site.Data.software (.Get 0)).image}}<img src="/images/software/{{ (index .Site.Data.software (.Get 0)).image }}"/>{{ end }}</td>
<td><strong>Name</strong></td>
@ -37,7 +42,12 @@
{{ with (index .Site.Data.software (.Get 0)).controllers }}
## Supported controllers
<table>
<table class="compattable">
<colgroup>
<col class="col-model">
<col class="col-support">
<col class="col-notes">
</colgroup>
<tr>
<th>Model</th>
<th>Support</th>
@ -47,7 +57,7 @@
<tr>
<td><a href="{{ (index $.Site.Data.controllers .model).ref }}">{{ (index $.Site.Data.controllers .model).name }}</a></td>
<td id="{{ if or .unofficial .partial }}partial{{ else }}native{{ end }}">{{ if .unofficial }}Unofficial{{ else if .partial }}Partial{{ else }}Native{{ end }}</td>
<td>{{ .notes }}</td>
<td>{{ .notes }} {{ if .adapter }}<a href="{{ index $.Site.Data.adapters .adapter "ref" }}">{{ index $.Site.Data.adapters .adapter "notes" }}</a>{{ end }}</td>
</tr>
{{ end }}
</table>