datatracker/ietf/templates/person/profile.html
Henrik Levkowetz c4b59f0363 Added personal photo+bio pages.
- Legacy-Id: 11278
2016-06-05 20:14:50 +00:00

18 lines
386 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}Profile for {{ person }}{% endblock %}
{% block content %}
{% origin %}
<h1>{{ person }}</h1>
<div class="bio-text">
<img class="bio-photo" src="{{ person.photo.url }}" alt="Photo of {{ person }}" />
{{ person.biography }}
</div>
{% endblock %}