1
0
Fork 0
mirror of https://code.sup39.dev/repos/Wqawg synced 2024-12-28 09:44:51 +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,6 +61,7 @@ $# <http://creativecommons.org/publicdomain/zero/1.0/>.
<ul> <ul>
$forall (Entity personID person, Entity _ actor) <- people $forall (Entity personID person, Entity _ actor) <- people
<li>
<a href=@{PersonR $ hashPerson personID}> <a href=@{PersonR $ hashPerson personID}>
~#{username2text $ personUsername person} #{actorName actor} ~#{username2text $ personUsername person} #{actorName actor}
@ -68,6 +69,7 @@ $# <http://creativecommons.org/publicdomain/zero/1.0/>.
<ul> <ul>
$forall (Entity groupID _, Entity _ actor) <- groups $forall (Entity groupID _, Entity _ actor) <- groups
<li>
<a href=@{GroupR $ hashGroup groupID}> <a href=@{GroupR $ hashGroup groupID}>
&#{keyHashidText $ hashGroup groupID} #{actorName actor} &#{keyHashidText $ hashGroup groupID} #{actorName actor}
@ -75,6 +77,7 @@ $# <http://creativecommons.org/publicdomain/zero/1.0/>.
<ul> <ul>
$forall (Entity repoID _, Entity _ actor) <- repos $forall (Entity repoID _, Entity _ actor) <- repos
<li>
<a href=@{RepoR $ hashRepo repoID}> <a href=@{RepoR $ hashRepo repoID}>
^#{keyHashidText $ hashRepo repoID} #{actorName actor} ^#{keyHashidText $ hashRepo repoID} #{actorName actor}
@ -82,6 +85,7 @@ $# <http://creativecommons.org/publicdomain/zero/1.0/>.
<ul> <ul>
$forall (Entity deckID _, Entity _ actor) <- decks $forall (Entity deckID _, Entity _ actor) <- decks
<li>
<a href=@{DeckR $ hashDeck deckID}> <a href=@{DeckR $ hashDeck deckID}>
=#{keyHashidText $ hashDeck deckID} #{actorName actor} =#{keyHashidText $ hashDeck deckID} #{actorName actor}
@ -89,5 +93,6 @@ $# <http://creativecommons.org/publicdomain/zero/1.0/>.
<ul> <ul>
$forall (Entity loomID _, Entity _ actor) <- looms $forall (Entity loomID _, Entity _ actor) <- looms
<li>
<a href=@{LoomR $ hashLoom loomID}> <a href=@{LoomR $ hashLoom loomID}>
+#{keyHashidText $ hashLoom loomID} #{actorName actor} +#{keyHashidText $ hashLoom loomID} #{actorName actor}