style fixes
This commit is contained in:
parent
be579da23c
commit
0e8d02c2ef
|
@ -6,16 +6,19 @@
|
|||
<title>{% block title %}LSBC{% endblock %}</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
|
||||
{% block stylesheets %}
|
||||
<style>
|
||||
img { max-width: 100% }
|
||||
</style>
|
||||
{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
{% if app.user %}
|
||||
<nav class="my-3">
|
||||
<a href="{{ path('app_podcast_index' )}}" class="btn btn-outline-primary">Manage podcasts</a>
|
||||
<a href="{{ path('app_episode_index' )}}" class="btn btn-outline-primary">Manage episodes</a>
|
||||
</nav>
|
||||
{% endif %}
|
||||
<div class="container">
|
||||
{% if app.user %}
|
||||
<nav class="my-3">
|
||||
<a href="{{ path('app_podcast_index' )}}" class="btn btn-outline-primary">Manage podcasts</a>
|
||||
<a href="{{ path('app_episode_index' )}}" class="btn btn-outline-primary">Manage episodes</a>
|
||||
</nav>
|
||||
{% endif %}
|
||||
{% block body %}{% endblock %}
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<th>Logo</th>
|
||||
<td><img src="{{ podcast.logoPath }}" alt="{{ podcast.name }} logo"></td>
|
||||
<td><img src="{{ podcast.logoPath }}" alt="{{ podcast.name }} logo" style="max-width: 300px"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Owner</th>
|
||||
|
|
Loading…
Reference in a new issue