1
0
mirror of https://koodu.h-i.works/projects/thebadspace synced 2025-06-25 16:04:37 -05:00

Front end clean up continued

Cleaned up the front end structure a bit more so the layout is unified
across pages, excluding the index which will serve as the main search
page, which has it's own style.

Location page was also added to display details of instances listed in
the database. It's mostly just informational so it will be kept simple.
This commit is contained in:
Ro
2023-01-22 14:03:45 -08:00
parent 477d6727f4
commit b9298451b7
8 changed files with 75 additions and 28 deletions

View File

@ -27,7 +27,8 @@ class Index extends AbstractController
$results = $locations->searchLocations($request->request->get("index_search"));
return $render->page(
["count" => count($list),
"items" => $results['items']
"items" => $results['items'],
"terms" => $results["terms"]
],
"This is The Bad Space",
"front/index.twig"