Add a basic stylesheet.
This commit is contained in:
parent
7656012fa7
commit
737535ffd5
11
app/public/static/main.css
Normal file
11
app/public/static/main.css
Normal file
@ -0,0 +1,11 @@
|
||||
body {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
background-color: #fff;
|
||||
padding: 1em;
|
||||
border: 1px solid #ccc;
|
||||
}
|
@ -21,7 +21,7 @@ class Routes
|
||||
*/
|
||||
public static function setup(App $app): void
|
||||
{
|
||||
$app->get('/', HomePage::class);
|
||||
$app->get('/[home]', HomePage::class);
|
||||
$app->get('/healthcheck', HealthCheck::class);
|
||||
// User Routes
|
||||
self::users($app);
|
||||
|
@ -2,6 +2,6 @@
|
||||
|
||||
{% block content %}
|
||||
<div>
|
||||
<h1>Slovocast</h1>
|
||||
<p>Welcome to Slovocast, the no-bullshit podcast hosting platform.</p>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
@ -6,17 +6,28 @@
|
||||
<meta name="description" value="{{ site_description }}">
|
||||
<meta name="keywords" value="{{ page_tags }}">
|
||||
{% endblock %}
|
||||
<link rel="stylesheet" href="static/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1>Slovocast</h1>
|
||||
{% block header %}{% endblock %}
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/home">Home</a></li>
|
||||
{% if logged_in %}
|
||||
<li><a href="/dashboard">Dashboard</a></li>
|
||||
{% else %}
|
||||
<li><a href="/login">Login</a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
{% include 'layouts/components/flash.twig' %}
|
||||
|
||||
|
||||
{% block content %}{% endblock %}
|
||||
</main>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user