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.
17 lines
365 B
Twig
17 lines
365 B
Twig
{% extends "base/frame.twig" %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/front/start.css?=sdfsdf">
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<section role="start">
|
|
<div>
|
|
<span role="title">{{ options.count }}</span>
|
|
<p>
|
|
Bad Spaces tracked.<br/>
|
|
Pace yourself.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|