summaryrefslogtreecommitdiff
path: root/lib/VN3/Docs/Page.pm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2019-12-30 09:49:13 +0100
committerYorhel <git@yorhel.nl>2019-12-30 09:49:13 +0100
commitd79c982ee876502db2e1a12752667c6a198c2ddc (patch)
treeccd4a4e72e5b0d3dd412bed6aee58044e93893f0 /lib/VN3/Docs/Page.pm
parente146ed7bda12d369532e485ca0c2e3d823811854 (diff)
Actually, let's get rid of v3 now that it doesn't work anymore anyway
Diffstat (limited to 'lib/VN3/Docs/Page.pm')
-rw-r--r--lib/VN3/Docs/Page.pm23
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/VN3/Docs/Page.pm b/lib/VN3/Docs/Page.pm
deleted file mode 100644
index 0392434b..00000000
--- a/lib/VN3/Docs/Page.pm
+++ /dev/null
@@ -1,23 +0,0 @@
-package VN3::Docs::Page;
-
-use VN3::Prelude;
-use VN3::Docs::Lib;
-
-TUWF::get qr{/$DREV_RE} => sub {
- my $d = entry d => tuwf->capture('id'), tuwf->capture('rev');
- return tuwf->resNotFound if !$d || $d->{hidden};
-
- Framework title => $d->{title},
- sub {
- Div class => 'row', sub {
- Div class => 'fixed-size-left-sidebar-md doc-list', \&Sidebar;
- Div class => 'col-md doc', sub {
- EntryEdit d => $d;
- H1 $d->{title};
- Lit md2html $d->{content};
- };
- };
- };
-};
-
-1;