structables/templates/member-instructables.html

32 lines
1 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>
2023-06-01 21:25:13 +00:00
<hr>
<h2>Instructables</h2>
<div style="max-width:90%;">
{% for ible in ibles %}
2023-06-01 21:25:13 +00:00
<div class="ible-list-item">
<a href="{{ ible.link }}" style="color:#bbc2cf;">
<img style="max-width:350px;" src="{{ ible.img }}" alt="{{ ible.title }}">
<p>{{ ible.title }}</p>
<p>{{ ible.views }} Views, {{ ible.favorites }} Favorites</p>
2023-06-01 21:25:13 +00:00
</a>
</div>
{% endfor %}
</div>
</center>
{% endblock %}