blob: 3b16fe3d93e405e5cf5f701188a34a0095a395e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends 'base.html' %}
{% block content %}
<div class="container">
<h2>Details of {{faccet.name}}</h2>
<p> {{faccet.name}} is a part of <b> {{creator.username}} </b> and was born on {{faccet.birth|datetime('%m-%d-%Y')}}
</p>
<h3> Biographical or Reference Information</h3>
<p> {{faccet.bio}}</p>
</div>
<div class="container">
<h3> Posts by {{faccet.name}}</h3>
<ul>
{% for post in posts %}
<li><a href="{{ url_for('post', post_id=post.id) }}">{{ post.title }}</a> - {{
post.created_at.strftime('%Y-%m-%d') }}</li>
{% endfor %}
</ul>
</div>
{% endblock %}
|