Skip to content

Instantly share code, notes, and snippets.

@Porter97
Created February 3, 2020 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Porter97/d322064e880478fab3fc326663c7a918 to your computer and use it in GitHub Desktop.
Save Porter97/d322064e880478fab3fc326663c7a918 to your computer and use it in GitHub Desktop.
{% extends "base.html" %}
{% block title %}Offbrand - {{ user.username }}{% endblock %}
{% block page_content %}
<div class="page-header">
<img class="img-rounded profile-thumbnail" src="{{ user.gravatar(size=256) }}">
<div class="profile-header">
<h1>{{ user.username }}</h1>
{% if current_user.is_administrator() %}
<p><a href="mailto:{{ user.email }}">{{ user.email }}</a></p>
{% endif %}
</div>
</div>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment