1
0
Fork 0
mirror of https://code.sup39.dev/repos/Wqawg synced 2024-12-27 16:54:53 +09:00

UI: BrowseR: Fix missing <li> tags

This commit is contained in:
fr33domlover 2022-09-26 12:47:50 +00:00
parent 70ad384940
commit 0e6a9d3269

View file

@ -61,33 +61,38 @@ $# <http://creativecommons.org/publicdomain/zero/1.0/>.
<ul> <ul>
$forall (Entity personID person, Entity _ actor) <- people $forall (Entity personID person, Entity _ actor) <- people
<a href=@{PersonR $ hashPerson personID}> <li>
~#{username2text $ personUsername person} #{actorName actor} <a href=@{PersonR $ hashPerson personID}>
~#{username2text $ personUsername person} #{actorName actor}
<h2>Groups <h2>Groups
<ul> <ul>
$forall (Entity groupID _, Entity _ actor) <- groups $forall (Entity groupID _, Entity _ actor) <- groups
<a href=@{GroupR $ hashGroup groupID}> <li>
&#{keyHashidText $ hashGroup groupID} #{actorName actor} <a href=@{GroupR $ hashGroup groupID}>
&#{keyHashidText $ hashGroup groupID} #{actorName actor}
<h2>Repos <h2>Repos
<ul> <ul>
$forall (Entity repoID _, Entity _ actor) <- repos $forall (Entity repoID _, Entity _ actor) <- repos
<a href=@{RepoR $ hashRepo repoID}> <li>
^#{keyHashidText $ hashRepo repoID} #{actorName actor} <a href=@{RepoR $ hashRepo repoID}>
^#{keyHashidText $ hashRepo repoID} #{actorName actor}
<h2>Decks <h2>Decks
<ul> <ul>
$forall (Entity deckID _, Entity _ actor) <- decks $forall (Entity deckID _, Entity _ actor) <- decks
<a href=@{DeckR $ hashDeck deckID}> <li>
=#{keyHashidText $ hashDeck deckID} #{actorName actor} <a href=@{DeckR $ hashDeck deckID}>
=#{keyHashidText $ hashDeck deckID} #{actorName actor}
<h2>Looms <h2>Looms
<ul> <ul>
$forall (Entity loomID _, Entity _ actor) <- looms $forall (Entity loomID _, Entity _ actor) <- looms
<a href=@{LoomR $ hashLoom loomID}> <li>
+#{keyHashidText $ hashLoom loomID} #{actorName actor} <a href=@{LoomR $ hashLoom loomID}>
+#{keyHashidText $ hashLoom loomID} #{actorName actor}