Skip to content

Commit

Permalink
change pages list to UL instead of a table for more uniformity
Browse files Browse the repository at this point in the history
  • Loading branch information
emad-elsaid committed Jan 22, 2023
1 parent 4230a20 commit fdf51a5
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions templates/pages.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<table class="table is-striped is-hoverable is-fullwidth">
<ul>
{{ range . }}
<tr>
<td class="is-capitalized"><a href="/{{.Name}}">{{ .Emoji }} {{ .Name }}</a></td>
<td style="width:0%;white-space: nowrap;" class="has-text-grey"><time>{{ ago .ModTime }}</time></td>
</tr>
<li>
<a href="/{{.Name}}" dir="auto">{{ .Emoji }} {{ .Name }}</a> <time class="has-text-grey is-size-7">{{ ago .ModTime }}</time>
</li>
{{ end }}
</table>
</ul>

0 comments on commit fdf51a5

Please sign in to comment.