mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
47 lines
2 KiB
PHP
47 lines
2 KiB
PHP
<?php NavActions::setNavUri('/learn') ?>
|
|
<?php Response::addMetaImage(Request::getHostAndProto() . '/img/cover-team.jpg') ?>
|
|
<?php Response::setMetaDescription('description.team') ?>
|
|
<?php echo View::render('nav/_header', ['isDark' => false]) ?>
|
|
<main>
|
|
<div class="hero hero-quote hero-img spacer2" style="background-image: url(https://spee.ch/@lbryteam/everyone-banner2.jpg)">
|
|
<div class="hero-content-wrapper">
|
|
<div class="hero-content text-center">
|
|
<h1 class="cover-title">{{page.team.header}}</h1>
|
|
<h2 class="cover-subtitle">Team work makes the dream work.</h2>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="content spacer2">
|
|
<h2>Leadership</h2>
|
|
<?php foreach(['jeremy-kauffman', 'alex-grintsvayg'] as $bioSlug): ?>
|
|
<div class="spacer2">
|
|
<?php echo View::render('content/_bio', ['person' => $bioSlug]) ?>
|
|
</div>
|
|
<?php endforeach ?>
|
|
<h2>Technical</h2>
|
|
<?php foreach([ 'kay-kurokawa', 'jack-robison',
|
|
'akinwale-ariwodola', 'sean-yesmunt', 'liam-cardenas', 'bill-bittner', 'amit-tulshyan', 'igor-gassmann'] as $bioSlug): ?>
|
|
<div class="spacer2">
|
|
<?php echo View::render('content/_bio', ['person' => $bioSlug]) ?>
|
|
</div>
|
|
<?php endforeach ?>
|
|
<h2>Business</h2>
|
|
<?php foreach(['josh-finer',
|
|
'natalie-mitchell',
|
|
'reilly-smith',
|
|
'tom-zarebczan',
|
|
'brinck-slattery'] as $bioSlug): ?>
|
|
<div class="spacer2">
|
|
<?php echo View::render('content/_bio', ['person' => $bioSlug]) ?>
|
|
</div>
|
|
<?php endforeach ?>
|
|
<h2>{{page.team.advisory}}</h2>
|
|
<?php foreach(['alex-tabarrok', 'ray-carballada', 'stephan-kinsella', 'michael-huemer'] as $bioSlug): ?>
|
|
<div class="spacer2">
|
|
<?php echo View::render('content/_bio', ['person' => $bioSlug]) ?>
|
|
</div>
|
|
<?php endforeach ?>
|
|
</div>
|
|
<?php echo View::render('nav/_learnFooter') ?>
|
|
</main>
|
|
<?php echo View::render('nav/_footer') ?>
|