mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-25 16:20:42 -05:00
14 lines
272 B
Twig
14 lines
272 B
Twig
{% extends layout('users') %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="jumbotron text-center">
|
|
<h1>{{ user.username }}</h1>
|
|
<p>Joined {{ user.created_at.diffForHumans() }}</p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %} |