This commit is contained in:
2026-08-22 23:59:41 -06:00
parent 84893662ca
commit a89b275313
23 changed files with 374 additions and 39 deletions

View File

@@ -5,13 +5,13 @@ use Moo;
extends 'CW::Controller';
sub index {
my ( $self, $request, $response ) = @_;
my ($self) = @_;
my $boards =
$self->dbh->selectall_arrayref( q[SELECT * FROM boards ORDER BY id],
{ Slice => {} } );
$response->template( 'Index',
$self->response->template( 'Index',
{ title => 'compiled.world | home', boards => $boards } );
}