simshadows

Cheatsheet for making changes to this website

You can usually just look at the components/layouts folders to find what you need. This page will list out things that aren’t custom components.

Tables:

<table class="general">
    <thead>
        <tr>
            <th>head1</th>
            <th>head2</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td rowspan="2">cell1</td>
            <td>cell2</td>
        </tr>
        <tr>
            <td>cell3</td>
        </tr>
    </tbody>
    <tfoot>
        <tr>
            <td colspan="2">foot</td>
        </tr>
    </tfoot>
</table>