diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-11-09 14:50:13 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-11-09 14:50:13 -0400 |
commit | 150c414044662134ddf785e7411560e3a6051a03 (patch) | |
tree | 3851fb14f9b3a069980f410f5c16efffeecc4783 /src/content | |
parent | aa30c888ea2307931c555db474d709f520c551a8 (diff) |
content: listRandomPageLinks: don't hard-code parentheses
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/dependencies/listRandomPageLinks.js | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/content/dependencies/listRandomPageLinks.js b/src/content/dependencies/listRandomPageLinks.js index 599a82d3..87e5f5aa 100644 --- a/src/content/dependencies/listRandomPageLinks.js +++ b/src/content/dependencies/listRandomPageLinks.js @@ -61,17 +61,18 @@ export default { html.tag('dd', html.tag('ul', [ - html.tag('li', [ - html.tag('a', - {href: '#', 'data-random': 'artist'}, - language.$('listingPage.other.randomPages.misc.randomArtist')), - - '(' + - html.tag('a', - {href: '#', 'data-random': 'artist-more-than-one-contrib'}, - language.$('listingPage.other.randomPages.misc.atLeastTwoContributions')) + - ')', - ]), + html.tag('li', + language.$('listingPage.other.randomPages.misc.randomArtist', { + mainLink: + html.tag('a', + {href: '#', 'data-random': 'artist'}, + language.$('listingPage.other.randomPages.misc.randomArtist.mainLink')), + + atLeastTwoContributions: + html.tag('a', + {href: '#', 'data-random': 'artist-more-than-one-contrib'}, + language.$('listingPage.other.randomPages.misc.randomArtist.atLeastTwoContributions')), + })), html.tag('li', html.tag('a', |