mirror of
https://github.com/Queercon/QC14-Badge-Webview.git
synced 2025-08-19 21:03:31 -07:00
Two column view
Also no tables; this isn't the 90's.
This commit is contained in:
parent
ce3998d9ed
commit
84efc32c2d
1 changed files with 18 additions and 8 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue