e897453664
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.
26 lines
651 B
Twig
26 lines
651 B
Twig
{% extends "base/frame.twig" %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/back/start.css?=qwert">
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
{% if loggedIn %}
|
|
<section role="den-index">
|
|
<h1>
|
|
Welcome to the Den,
|
|
{{ handle }}
|
|
|
|
</h1>
|
|
Remember to pace yourself because you're working with some of the worse places on the web. Drink water, takes lot of breaks and remember you are the reason the interent is becoming safer.
|
|
</section>
|
|
|
|
{% else %}
|
|
<section role="den-login">
|
|
<h1>The Den</h1><br/>
|
|
{{ include("forms/login-form.twig") }}
|
|
</section>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|