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

Front End Templating

Began the process of getting the front end together by adding about and
listing pages and applied some light styling to it doesn't look like
garbage.

Still need to turn on the indivial instance display pages, so that will
be next.
This commit is contained in:
Ro
2023-01-12 15:43:54 -08:00
parent 5ad29f78f6
commit e897453664
15 changed files with 199 additions and 67 deletions

View File

@ -16,12 +16,7 @@
{% else %}
<section role="den-login">
<h1>This is the Den</h1><br/>
{% if options.notice is defined %}
<div role="system-notice">
{{ options.notice }}
</div>
{% endif %}
<h1>The Den</h1><br/>
{{ include("forms/login-form.twig") }}
</section>

View File

@ -8,12 +8,6 @@
<h1>
Location Listing
</h1>
{% if options.notice is defined %}
<div role="system-notice">
{{ options.notice }}
</div>
{% endif %}
{% if options.mode == "add" %}
<h2>Add New Location</h2>
{{ include("forms/add-location.twig") }}