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:
@ -13,33 +13,50 @@
|
||||
<header>
|
||||
<nav>
|
||||
<div role="nav-left">
|
||||
<i class="ti ti-biohazard-off"></i>
|
||||
<a href="/">The Bad Space</a>
|
||||
<a href="/" title="home" role="nav-links">
|
||||
<i class="ti ti-biohazard-off"></i>
|
||||
</a>
|
||||
<a href="/about" title="about" role="nav-links">
|
||||
<i class="ti ti-info-circle"></i>
|
||||
</a>
|
||||
<a href="/listings/page/1" title="instance listing" role="nav-links">
|
||||
<i class="ti ti-list"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div role="nav-right"></a>
|
||||
<div role="nav-right">
|
||||
|
||||
{% if loggedIn == true %}
|
||||
<a href="/den" title="den index">
|
||||
<i class="ti ti-door" title="den index"></i>
|
||||
</a>
|
||||
<a href="/den/members" title="members">
|
||||
<i class="ti ti-users" title="members"></i>
|
||||
</a>
|
||||
<a href="/den/locations/page/1" title="locations">
|
||||
<i class="ti ti-list-details" title="locations"></i>
|
||||
</a>
|
||||
<a href="/logout" title="logout">
|
||||
<i class="ti ti-door-exit" title="logout"></i>
|
||||
</a>
|
||||
{% else %}
|
||||
<a href="/den" title="login">
|
||||
<i class="ti ti-door-enter" title="login"></i>
|
||||
</a>
|
||||
{% endif %}
|
||||
{% if loggedIn == true %}
|
||||
<a href="/den" title="den index" role="nav-links">
|
||||
<i class="ti ti-door" title="den index"></i>
|
||||
</a>
|
||||
<a href="/den/members" title="members" role="nav-links">
|
||||
<i class="ti ti-users" title="members"></i>
|
||||
</a>
|
||||
<a href="/den/locations/page/1" title="locations" role="nav-links">
|
||||
<i class="ti ti-list-details" title="locations"></i>
|
||||
</a>
|
||||
<a href="/logout" title="logout" role="nav-links">
|
||||
<i class="ti ti-door-exit" title="logout"></i>
|
||||
</a>
|
||||
{% else %}
|
||||
<a href="/den" title="login" role="nav-links">
|
||||
<i class="ti ti-door-enter" title="login"></i>
|
||||
</a>
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
{% if options.notice is defined %}
|
||||
<div role="system-notice">
|
||||
<i class="ti ti-alert-circle"></i>
|
||||
{{ options.notice }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
</nav>
|
||||
<main>
|
||||
{% block main %}{% endblock %}
|
||||
</main>
|
||||
</body>
|
||||
</body>
|
||||
</html></header><main>
|
||||
{% block main %}{% endblock %}</main>{% block javascripts %}{% endblock %}</body></html>
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user