summaryrefslogtreecommitdiff
path: root/lib/VNWeb/Releases
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-10-25 12:02:35 +0100
committerYorhel <git@yorhel.nl>2020-10-28 09:32:45 +0100
commit960946ac90a8da32953a4a21128d993f2049f8d1 (patch)
treedcb9e0006c2afe79143141b1526d6ec7e11bc11a /lib/VNWeb/Releases
parent3e3f36d3459d0db851c09315fcd74155735d9859 (diff)
Advsearch: Initial experiments with a new advanced search
Doing this on the main branch to make it easier to get early testing and feedback. Not like I have anything worth testing now, but it's not like this code is getting in the way of anything else. (Unless the changes broke something unrelated, in which case it's extra good to get that early testing)
Diffstat (limited to 'lib/VNWeb/Releases')
-rw-r--r--lib/VNWeb/Releases/Lib.pm16
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/VNWeb/Releases/Lib.pm b/lib/VNWeb/Releases/Lib.pm
index 4aad7b50..5be64efd 100644
--- a/lib/VNWeb/Releases/Lib.pm
+++ b/lib/VNWeb/Releases/Lib.pm
@@ -52,13 +52,15 @@ sub release_extlinks_ {
abbr_ class => 'icons external', title => 'External link', '';
};
div_ sub {
- ul_ sub {
- li_ sub {
- a_ href => $_->[1], sub {
- span_ $_->[2] if length $_->[2];
- txt_ $_->[0];
- }
- } for $r->{extlinks}->@*;
+ div_ sub {
+ ul_ sub {
+ li_ sub {
+ a_ href => $_->[1], sub {
+ span_ $_->[2] if length $_->[2];
+ txt_ $_->[0];
+ }
+ } for $r->{extlinks}->@*;
+ }
}
}
}