Show the speaker name, tagline and photo
This commit is contained in:
parent
6901e5964d
commit
5980780fb5
|
@ -2,6 +2,8 @@
|
|||
|
||||
{% block body %}
|
||||
<div class="p-10 mx-auto max-w-4xl">
|
||||
{% block content_wrapper %}
|
||||
{% block content %}{% endblock %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in a new issue