Two column view

Also no tables; this isn't the 90's.
This commit is contained in:
Jonathan Nelson 2017-07-23 16:54:32 -07:00 committed by GitHub
commit 84efc32c2d

View file

@ -150,17 +150,27 @@
} }
<table> <div class="list-column">
@for (int i = 0; i < 44; i++) @for (int i = 0; i < 22; i++)
{ {
<tr> <div class="list-row">
<td><img class="icon" src="@img[i]" /></td> <img class="list-icon" src="@img[i]" />
<td>@desc[i]</td> @desc[i]
</tr> </div>
} }
</table> </div>
<div class="list-column">
@for (int i = 22; i < 44; i++)
{
<div class="list-row">
<img class="list-icon" src="@img[i]" />
@desc[i]
</div>
}
</div>
@if (indv) @if (indv)
{ {