You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
731 B
HTML
40 lines
731 B
HTML
<style>
|
|
#no-js {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
#no-js td, #no-js th {
|
|
border: 0px solid #878787;
|
|
padding: 8px;
|
|
}
|
|
|
|
#no-js tr:nth-child(even){background-color: #3a3a3a;}
|
|
|
|
#no-js th {
|
|
padding-top: 12px;
|
|
padding-bottom: 12px;
|
|
text-align: left;
|
|
background-color: #9A61AB;
|
|
color: #ebdbb2;
|
|
}
|
|
</style>
|
|
<table id="no-js">
|
|
<thead>
|
|
<tr>
|
|
<th>URL</th>
|
|
<th>Size in KB</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ $url := "static/assets/no-js/data/members.csv" }}
|
|
{{ $sep := "," }}
|
|
{{ range $i, $r := getCSV $sep $url }}
|
|
<tr>
|
|
<td><a href="{{ index $r 0 }}">{{ index $r 0 }}</a></td>
|
|
<td>{{ index $r 1 }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|