Compare commits

...

2 Commits

Author SHA1 Message Date
Lassi Kortela 473b073527 Turn the listing into one table
The page looked messy when each section was a separate table with
different column widths than the others.

The W3C HTML Validator now gives the following error, but I cannot
figure out how to get around it without complicated CSS.

The element “h2” must not appear as a descendant of the “th” element.
2024-10-20 15:05:16 +03:00
Lassi Kortela 0d8ff55f34 List Websites first
Most people are looking for these.
2024-10-20 14:59:33 +03:00
1 changed files with 47 additions and 39 deletions

View File

@ -31,8 +31,42 @@
</header> </header>
<h1 id="logo">Scheme Conservatory</h1> <h1 id="logo">Scheme Conservatory</h1>
<p>Preservation and maintenance of old software and websites.</p> <p>Preservation and maintenance of old software and websites.</p>
<h2>Implementations</h2>
<table class="no-border"> <table class="no-border">
<tr>
<th colspan="2">
<h2>Websites</h2>
</th>
</tr>
<tr>
<th>
<a href="schemers/">Schemers.org</a>
</th>
<td>Curated by Shriram Krishnamurthi</td>
</tr>
<tr>
<th>
<a href="readscheme/">Read Scheme</a>
</th>
<td>Curated by Jim Bender</td>
</tr>
<tr>
<th>
<a href="cmu-repository/">CMU Scheme Repository</a>
</th>
<td>Part of the CMU Artificial Intelligence Repository</td>
</tr>
<tr>
<th>
<a href="indiana-repository/">Internet Scheme
Repository</a>
</th>
<td>Hosted at Indiana University</td>
</tr>
<tr>
<th colspan="2">
<h2>Implementations</h2>
</th>
</tr>
<tr> <tr>
<th> <th>
<a href="dream/">Dream</a> <a href="dream/">Dream</a>
@ -99,9 +133,11 @@
</th> </th>
<td>R4RS for the VxWorks RTOS</td> <td>R4RS for the VxWorks RTOS</td>
</tr> </tr>
</table> <tr>
<h2>Libraries</h2> <th colspan="2">
<table class="no-border"> <h2>Libraries</h2>
</th>
</tr>
<tr> <tr>
<th> <th>
<a href="ffigen/">FFIGEN</a> <a href="ffigen/">FFIGEN</a>
@ -120,9 +156,11 @@
</th> </th>
<td>Portable syntax-case with implicit phasing</td> <td>Portable syntax-case with implicit phasing</td>
</tr> </tr>
</table> <tr>
<h2>Applications</h2> <th colspan="2">
<table class="no-border"> <h2>Applications</h2>
</th>
</tr>
<tr> <tr>
<th> <th>
<a href="dreamos/">DreamOS</a> <a href="dreamos/">DreamOS</a>
@ -142,38 +180,8 @@
<td>Spreadsheet written in STk</td> <td>Spreadsheet written in STk</td>
</tr> </tr>
</table> </table>
<h2>Websites</h2>
<table class="no-border">
<tr>
<th>
<a href="schemers/">Schemers.org</a>
</th>
<td>Curated by Shriram Krishnamurthi</td>
</tr>
<tr>
<th>
<a href="readscheme/">Read Scheme</a>
</th>
<td>Curated by Jim Bender</td>
</tr>
<tr>
<th>
<a href="cmu-repository/">CMU Scheme Repository</a>
</th>
<td>Part of the CMU Artificial Intelligence Repository</td>
</tr>
<tr>
<th>
<a href="indiana-repository/">Internet Scheme
Repository</a>
</th>
<td>Hosted at Indiana University</td>
</tr>
</table>
<h2>Contributing</h2> <h2>Contributing</h2>
<th> <p><a href="https://gitea.scheme.org/conservatory">Repositories
<a href="https://gitea.scheme.org/conservatory">Repositories at at <code>gitea.scheme.org</code></a></p>
<code>gitea.scheme.org</code></a>
</th>
</body> </body>
</html> </html>