]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/blog/author.html
Update Christman campaign copy
[ipfire.org.git] / src / templates / blog / author.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ author.name }}{% end block %}
4
5 {% block main %}
6 <div class="card">
7 <div class="card-body">
8 <div class="row justify-content-center my-5">
9 <div class="col-12 col-sm-8 col-md-6 col-xl-4 d-flex flex-column align-items-center">
10 <img class="img-fluid rounded-circle mb-4" src="{{ author.avatar_url(512) }}" alt="{{ author }}" />
11
12 <h4>{{ author }}</h4>
13 </div>
14 </div>
15
16 {% module BlogList(posts) %}
17 </div>
18 </div>
19 {% end block %}