profile.html
HTML document, ASCII text
1{% extends "default.html" %} 2{% import "small-annotation-display.html" as annotation_display %} 3 4{% block nav_title %}{{ user.formatted_name }}{% endblock %} 5{% block title %}{{ user.formatted_name }}'s profile | {{ site_name }}{% endblock %} 6 7{% block content %} 8<x-frame style="--width: 768px" class="vbox"> 9<h1>{{ user.formatted_name }}</h1> 10<p>Joined: {{ user.joined_timestamp }}</p> 11<h2>Pictures</h2> 12<ul class="thumbnail-list"> 13{% for resource in user.pictures %} 14<li> 15<a href="/picture/{{ resource.id }}"> 16{{ annotation_display.annotation_display(resource) }} 17<div class="list-detail"> 18{{ resource.title }} 19</div> 20</a> 21</li> 22{% endfor %} 23</ul> 24</x-frame> 25{% endblock %} 26