About
diff --git a/templates/user/_layout/header.twig b/templates/user/_layout/header.twig
new file mode 100644
index 00000000..68aeda8f
--- /dev/null
+++ b/templates/user/_layout/header.twig
@@ -0,0 +1,80 @@
+
diff --git a/templates/user/profile.twig b/templates/user/profile.twig
index 7c691cac..7168a81f 100644
--- a/templates/user/profile.twig
+++ b/templates/user/profile.twig
@@ -10,127 +10,38 @@
{% set site_background_url = '/profile.php?m=background&u=' ~ profile.user_id %}
{% endif %}
+{% set stats = [
+ {
+ 'title': 'Joined',
+ 'is_date': true,
+ 'value': profile.created_at,
+ },
+ {
+ 'title': 'Last seen',
+ 'is_date': true,
+ 'value': profile.last_seen,
+ },
+ {
+ 'title': 'Topics',
+ 'value': profile.forum_topic_count,
+ },
+ {
+ 'title': 'Posts',
+ 'value': profile.forum_post_count,
+ },
+ {
+ 'title': 'Comments',
+ 'value': profile.comments_count,
+ },
+ {
+ 'title': 'Changes',
+ 'value': profile.changelog_count,
+ },
+] %}
+
{% block content %}
-
+ {% include 'user/_layout/header.twig' %}