mirror of
https://code.naskya.net/repos/ndqEd
synced 2025-01-25 20:17:50 +09:00
Use <x .y> instead of <x class=y> in Hamlet files
This commit is contained in:
parent
1fcc59f3e8
commit
9295a9ba8c
2 changed files with 3 additions and 3 deletions
|
@ -12,9 +12,9 @@ $# You should have received a copy of the CC0 Public Domain Dedication along
|
||||||
$# with this software. If not, see
|
$# with this software. If not, see
|
||||||
$# <http://creativecommons.org/publicdomain/zero/1.0/>.
|
$# <http://creativecommons.org/publicdomain/zero/1.0/>.
|
||||||
|
|
||||||
<span class="parents">
|
<span .parents>
|
||||||
$forall (route, title) <- bcs
|
$forall (route, title) <- bcs
|
||||||
<a href=@{route}>#{title}
|
<a href=@{route}>#{title}
|
||||||
:: #
|
:: #
|
||||||
<span class="title">
|
<span .title>
|
||||||
#{current}
|
#{current}
|
||||||
|
|
|
@ -21,6 +21,6 @@ $# <http://creativecommons.org/publicdomain/zero/1.0/>.
|
||||||
$forall LogEntry author hash message time <- entries
|
$forall LogEntry author hash message time <- entries
|
||||||
<tr>
|
<tr>
|
||||||
<td>#{author}
|
<td>#{author}
|
||||||
<td class="hash">#{T.take 10 hash}
|
<td .hash>#{T.take 10 hash}
|
||||||
<td>#{message}
|
<td>#{message}
|
||||||
<td>#{time}
|
<td>#{time}
|
||||||
|
|
Loading…
Add table
Reference in a new issue