]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/people/index.html
people: Add some text to the index page
[ipfire.org.git] / src / templates / people / index.html
CommitLineData
7aee4b8d 1{% extends "base.html" %}
66862195 2
7aee4b8d 3{% block title %}{{ _("Home") }}{% end block %}
66862195 4
d09d554b
MT
5{% block content %}
6 <section>
edb40248
MT
7 <div class="row">
8 <div class="col col-lg-6">
9 <h1>{{ _("Hello, %s!") % current_user.first_name }}</h1>
10
11 <p>
12 {{ _("Welcome to the IPFire People Portal where you can manage your account and get in touch with others") }}
13 </p>
14 </div>
15 </div>
d09d554b 16 </section>
525c01f7 17
d09d554b 18 {% module Channels(current_user) %}
66862195 19{% end block %}