22 lines
465 B
Twig
22 lines
465 B
Twig
{% extends 'layouts/skeleton.twig' %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<h1>Hello, {{ session.get('user').name }}!</h1>
|
|
</div>
|
|
<div>
|
|
{% if channel %}
|
|
<h2>{{ channel.name }}</h2>
|
|
<ul>
|
|
<li>Add Episode</li>
|
|
<li>Manage Episodes</li>
|
|
<li>Generate Feed</li>
|
|
</ul>
|
|
{% else %}
|
|
<ul>
|
|
<li><a href="/channel/create">Create Channel</a></li>
|
|
</ul>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|