You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/templates/domain_manage_dashboard.html

24 lines
701 B
HTML

{% set page_name = "domain_manage_dashboard" %}
{% import "components/user.html" as user %}
{% extends "manage_base.html" %}
{% block domain_content %}
{% if system.bio %}
<div class="section">
<div class="section__body typo">
{{ system.bio|markdown|safe }}
</div>
</div>
{% endif %}
<div class="section">
<div class="section__header">
<h1 class="section__title" data-heading>{{ _('Information') }}</h1>
</div>
<div class="section__body typo">
<dl class="large horizontal">
<dt>{{ _('Gravatar') }}</dt><dd><img src="{{ gravatar(system.gravatar) }}" width="32" height="32"></dd>
<dt>{{ _('Name') }}</dt><dd>{{ system.uname }}</dd>
</dl>
</div>
</div>
{% endblock %}