11 lines
289 B
HTML
11 lines
289 B
HTML
{% extends "templates/web.html" %}
|
|
{% from "www/macros/profile.html" import profile %}
|
|
{% block page_content %}
|
|
<section>
|
|
<div>
|
|
{{ profile(member.photo, member.full_name, abbr, "large")}}
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|
|
|
|
<!-- this is a sample default web page template --> |