Update team.php

This commit is contained in:
Jeremy Kauffman 2023-10-23 14:57:12 -04:00 committed by GitHub
parent 2e174fd386
commit dfade06915
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,24 +10,6 @@
</div> </div>
</section> </section>
<?php $teams = [ <p>No one.</p>
"Leadership" => ['jeremy-kauffman', 'alex-grintsvayg', 'josh-finer'],
"Tech" => ['lex-berezhny', 'jack-robison', 'victor-shyba', 'brannon-king', 'roy-lee',
'jessop-breth'],
"Advisory Team" => ['alex-tabarrok', 'ray-carballada', 'stephan-kinsella', 'michael-huemer'],
] ?>
<?php foreach ($teams as $team => $members): ?>
<section>
<div class="inner-wrap">
<h2><?php echo $team ?></h2>
</div>
<div class="inner-wrap team-members">
<?php foreach ($members as $bioSlug): ?>
<?php echo View::render('content/_bioCircle', ['slug' => $bioSlug]) ?>
<?php endforeach ?>
</div>
</section>
<?php endforeach ?>
</main> </main>