structables/templates/member.html

39 lines
1.2 KiB
HTML
Raw Normal View History

{% extends "base.html" %}
2023-06-01 21:25:13 +00:00
{% block content %}
2023-06-01 21:25:13 +00:00
<center>
<img width=150px height=150px style="display:inline-block;" src="{{ header_content.avatar }}" alt="{{ header_content.title }}">
<h1>{{ header_content.title }}</h1>
<span>{{ header_content.location }}&nbsp;&nbsp;</span>
<span>{{ header_content.signup }}</span>
2023-06-01 21:25:13 +00:00
<br>
<span>{{ header_content.instructables }} Instructables&nbsp;&nbsp;</span>
<span>{{ header_content.views }} Views&nbsp;&nbsp;</span>
<span>{{ header_content.comments }} Comments&nbsp;&nbsp;</span>
<span>{{ header_content.followers }} Followers</span>
2023-06-01 21:25:13 +00:00
<br>
<p>{{ header_content.bio }}</p>
{% if ible_list_title != "" %}
2023-06-01 21:25:13 +00:00
<hr>
{% endif %}
<h2>{{ ible_list_title }}</h2>
{% for ible in ibles %}
2023-06-01 21:25:13 +00:00
<div class="member-list">
<a href="{{ ible.link }}" style="color:#bbc2cf;">
<img style="max-width:200px;" src="{{ ible.img }}" alt="{{ ible.title }}">
<p>{{ ible.title }}</p>
2023-06-01 21:25:13 +00:00
</a>
</div>
{% endfor %}
<p><a href="/member/{{ header_content.title }}/instructables/">View all Instructables</a></p>
2023-06-01 21:25:13 +00:00
<br>
<h2>{{ ach_list_title }}</h2>
{% for ach in achs %}
2023-06-01 21:25:13 +00:00
<div class="member-list">
<p><b>{{ ach[0] }}</b></p>
<p>{{ ach[1] }}</p>
</div>
{% endfor %}
</center>
{% endblock %}