29 lines
477 B
Text
29 lines
477 B
Text
@(collect)
|
|
@char,@speech
|
|
@(end)
|
|
@(output :filter :to_html)
|
|
<style type="text/css">
|
|
tr.odd td {
|
|
background-color: #CC9999; color: black;
|
|
}
|
|
tr.even td {
|
|
background-color: #9999CC; color: black;
|
|
}
|
|
th {
|
|
background-color: #99CC99; color: black;
|
|
}
|
|
</style>
|
|
<table>
|
|
@ (repeat :counter row)
|
|
<tr class="@(if (evenp row) 'even 'odd)">
|
|
<td>@char</td>
|
|
<td>@speech</td>
|
|
</tr>
|
|
@ (first)
|
|
<tr>
|
|
<th>@char</th>
|
|
<th>@speech</th>
|
|
</tr>
|
|
@ (end)
|
|
</table>
|
|
@(end)
|