datatracker/ietf/templates/person/profile.html
2016-06-06 16:29:25 +00:00

19 lines
443 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load markup_tags %}
{% 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 | apply_markup:"restructuredtext" }}
</div>
{% endblock %}