Files
website-v2/templates/boost/moderators.html
Greg Newman 057c16bb9f 🎨 cleaning up some home page styles
First pass with rustywind is doing massive cleanup
2023-04-28 09:27:38 -04:00

44 lines
1.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "base.html" %}
{% load static %}
{% block subnav %}
<div class="py-8 px-4 space-y-4 text-sm uppercase border-b md:py-2 md:px-0 md:space-x-10 border-slate">
<a href="{% url 'boost-about' %}" class="block md:inline">About</a>
<a href="{% url 'boost-people' %}" class="block md:inline">People</a>
<a href="{% url 'boost-moderators' %}" class="block md:inline md:py-1 md:border-b text-orange md:border-orange">Moderators</a>
</div>
{% endblock %}
{% block content %}
<div class="py-0 px-3 mb-3 md:py-6 md:px-0">
<div class="py-16 md:w-full">
<h1 class="text-4xl text-center">Boost Moderators</h1>
<p class="mt-0 text-center">
These are some of the collaborative experts behind Boost!
</p>
</div>
<div class="py-5 my-6 border-t border-b border-slate">
<div class="grid grid-rows-5 grid-flow-col gap-4 text-sm">
{% for i in range %}
{% include 'boost/_person.html' %}
{% endfor %}
</div>
</div>
<div>
<h3>In Memoriam</h3>
<p>
Once a part of Boost, always a part of Boost. We appreciate these special individuals contributions.
</p>
<div class="grid grid-rows-5 grid-flow-col gap-4 text-sm">
<div>
<img src="{% static 'img/fpo/memoriam.png' %}" />
Beman Dawes
</div>
</div>
</div>
</div>
{% endblock %}