This commit is contained in:
Citlali del Rey 2022-10-14 18:58:36 -07:00
parent 74a40d8e7f
commit 1a619c6aa6
Signed by: nullobsi
GPG Key ID: 933A1F44222C2634
4 changed files with 14 additions and 14 deletions

12
Makefile.PL Normal file
View File

@ -0,0 +1,12 @@
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
VERSION => '0.01',
PREREQ_PM => {
'Mojolicious' => '9.27'
},
test => {TESTS => 't/*.t'}
);

12
mojo.pl
View File

@ -1,12 +0,0 @@
use strict;
use warnings FATAL => 'all';
use Mojolicious::Lite -signatures;
app->start;
__DATA__
@@ magic.html.ep
<html>
<body>

View File

@ -4,6 +4,6 @@ use Test::More;
use Test::Mojo;
my $t = Test::Mojo->new('unix_dog');
$t->get_ok('/')->status_is(200)->content_like(qr/Mojolicious/i);
$t->get_ok('/')->status_is(200)->content_like(qr/UNIX.dog/i);
done_testing();

View File

@ -24,7 +24,7 @@
<%= content %>
</main>
<footer>
<span class="copyleft">&copy;</span> Copyleft UNIX.dog, 2022. All pages licensed under CC BY-NC-SA 4.0.
<span class="copyleft">&copy;</span> <a href="https://git.unix.dog/nullobsi/website">Copyleft</a> UNIX.dog, 2022. All pages licensed under CC BY-NC-SA 4.0.
<br>
Please follow <a href="/rules">all rules</a> while using these services.
</footer>