| 1 |
{% extends "base.html" %} |
| 2 |
|
| 3 |
{% block title %}Team - Makenot.work{% endblock %} |
| 4 |
{% block body_attrs %} class="padded-page"{% endblock %} |
| 5 |
|
| 6 |
{% block content %} |
| 7 |
{% include "partials/site_header.html" %} |
| 8 |
|
| 9 |
<div class="container team-page"> |
| 10 |
<h1 class="page-title">Team</h1> |
| 11 |
<p class="team-intro">Small by design. The base platform was designed by the founder, who intends to stay as the technical lead through the project's growth.</p> |
| 12 |
|
| 13 |
<section class="team-section"> |
| 14 |
<h2 class="section-label">Founder</h2> |
| 15 |
<div class="use-case-grid use-case-grid-2col"> |
| 16 |
<article class="use-case-card team-card"> |
| 17 |
<div class="use-case-title">Max</div> |
| 18 |
<div class="use-case-who">CEO & Tech Lead</div> |
| 19 |
<p class="team-card-experience">Designed and built the platform.</p> |
| 20 |
<p class="team-card-links"> |
| 21 |
<a class="team-card-link" href="/u/max">@max</a> |
| 22 |
</p> |
| 23 |
<details class="team-card-bio"> |
| 24 |
<summary>Bio</summary> |
| 25 |
<p>I started in the creator space as a young kid making backgrounds and montages for CoD MW2 players. I picked up programming around the same time, helping Minecraft server owners with whatever they needed. I spent the years after that focused on my education: a BA in mathematics at the University of Chicago, then a PhD in mathematics at UC San Diego. Afterward I decided to start my own business, and here we are.</p> |
| 26 |
</details> |
| 27 |
</article> |
| 28 |
</div> |
| 29 |
</section> |
| 30 |
|
| 31 |
<section class="team-section"> |
| 32 |
<h2 class="section-label">Residents</h2> |
| 33 |
<p class="team-empty">Resident cards will appear here as they join.</p> |
| 34 |
</section> |
| 35 |
|
| 36 |
<section class="team-section"> |
| 37 |
<h2 class="section-label">Fellows</h2> |
| 38 |
<p class="team-empty">Fellow cards will appear here.</p> |
| 39 |
</section> |
| 40 |
</div> |
| 41 |
{% endblock %} |
| 42 |
|