Show the speaker name, tagline and photo

This commit is contained in:
Oliver Davies 2024-02-06 08:00:00 +00:00
parent 6901e5964d
commit 5980780fb5
2 changed files with 19 additions and 1 deletions

View file

@ -2,6 +2,8 @@
{% block body %}
<div class="p-10 mx-auto max-w-4xl">
{% block content %}{% endblock %}
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
</div>
{% endblock %}

View file

@ -1 +1,17 @@
{% extends 'default' %}
{% block content_wrapper %}
<h1 class="text-3xl font-bold text-center md:text-left">{{ page.name }}</h1>
<div class="mt-6">
<img
alt="Photo of {{ page.name }}"
class="object-cover flex-shrink-0 rounded-full shadow-lg size-40"
src="{{ page.imageUrl }}"
/>
</div>
<div class="mt-10">
<em>{{ block('content') }}</em>
</div>
{% endblock %}