Compare commits
3 Commits
7656012fa7
...
10e4305e62
Author | SHA1 | Date | |
---|---|---|---|
10e4305e62 | |||
56f9683d0a | |||
737535ffd5 |
47
app/public/static/main.css
Normal file
47
app/public/static/main.css
Normal file
@ -0,0 +1,47 @@
|
||||
body {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
.container {
|
||||
box-sizing: border-box;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
header {
|
||||
float: left;
|
||||
padding: 0.25em 1em;
|
||||
}
|
||||
header h1 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
nav {
|
||||
float: right;
|
||||
padding: 0.25em 1em;
|
||||
}
|
||||
nav ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
nav ul li {
|
||||
display: inline;
|
||||
}
|
||||
nav ul li:last-child {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
main {
|
||||
clear: both;
|
||||
background-color: #fff;
|
||||
border: 1px solid #ccc;
|
||||
padding: 1em;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: right;
|
||||
padding: 0.25em 1em;
|
||||
}
|
@ -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,22 +6,34 @@
|
||||
<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><a href="/home">Slovocast</a></h1>
|
||||
{% block header %}{% endblock %}
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
<ul>
|
||||
{% 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>
|
||||
|
||||
<footer>
|
||||
{% block footer %}{% endblock %}
|
||||
{% block footer %}
|
||||
© 2024, Slovocast
|
||||
{% endblock %}
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
|
Loading…
Reference in New Issue
Block a user