job and alex bios

This commit is contained in:
Jeremy Kauffman 2016-07-11 14:03:52 -04:00
parent 8f9da6b9c2
commit 5afcf54f38
4 changed files with 31 additions and 45 deletions

View file

@ -133,8 +133,10 @@ class ContentActions extends Actions
$person = $vars['person'];
$path = 'bio/' . $person . '.md';
list($metadata, $bioHtml) = View::parseMarkdown($path);
$relativeImgSrc = '/img/team/' . $person . '-644x450.jpg';
$imgSrc = file_exists(ROOT_DIR . '/web' . $relativeImgSrc) ? $relativeImgSrc : '/img/team/spooner-644x450.jpg';
return $metadata + [
'imgSrc' => '/img/team/' . $person . '-644x450.jpg',
'imgSrc' => $imgSrc,
'bioHtml' => $bioHtml,
];
}

View file

@ -0,0 +1,8 @@
---
name: Alex Liebowitz
role: App Developer
email: aliebowitz@lbry.io
---
Alex is responsible for the LBRY browsing application. An economist turned web developer, Alex joins an assortment of polymaths at LBRY.
Prior to joining LBRY, Alex helped build web and mobile apps for large national corporations. Alex also helps run a large podcasting network and brings knowledge and experience of the publishing industry.

View file

@ -0,0 +1,8 @@
---
name: Job Evers-Meltzer
role: Project Engineer
email: job@lbry.io
---
Job was early to discover LBRY and made himself indispensable almost immediately. Job handles LBRY builds, analytics, an assortment of adhoc projects, as well as enforcing engineering standards and best practices.
Currently obtaining a masters in computer science at Georgia Institute of Technology, Job also Massachusetts Institute of Technology, where he obtained a degree in mathematics. Job has experience in uantitative finance, analytical development, and data engineering.

View file

@ -6,38 +6,20 @@
<div class="content photo-grid spacer2">
<h1>The Team</h1>
<p>LBRY is made possible by more people than we could ever list here. The founding team is listed below.</p>
<?php foreach([
['jeremy-kauffman', 'michael-zargham'],
['josh-finer', 'alex-grintsvayg'],
['mike-vine', 'jimmy-kiselak', 'jack-robison'],
['job-evers-meltzer', 'reilly-smith', 'alex-liebowitz']
] as $bioRow): ?>
<div class="row-fluid">
<div class="span6 spacer2">
<?php echo View::render('content/_bio', ['person' => 'jeremy-kauffman']) ?>
</div>
<div class="span6 spacer2">
<?php echo View::render('content/_bio', ['person' => 'michael-zargham']) ?>
</div>
</div>
<div class="row-fluid">
<div class="span6 spacer2">
<?php echo View::render('content/_bio', ['person' => 'josh-finer']) ?>
</div>
<div class="span6 spacer2">
<?php echo View::render('content/_bio', ['person' => 'jimmy-kiselak']) ?>
</div>
</div>
<div class="row-fluid">
<div class="span6 spacer2">
<?php echo View::render('content/_bio', ['person' => 'mike-vine']) ?>
</div>
<div class="span6 spacer2">
<?php echo View::render('content/_bio', ['person' => 'alex-grintsvayg']) ?>
</div>
</div>
<div class="row-fluid">
<div class="span6 spacer2">
<?php echo View::render('content/_bio', ['person' => 'jack-robison']) ?>
</div>
<div class="span6">
<?php echo View::render('content/_bio', ['person' => 'reilly-smith']) ?>
</div>
<?php foreach($bioRow as $bioSlug): ?>
<div class="<?php echo count($bioRow) == 2 ? 'span6' : 'span4' ?> spacer2">
<?php echo View::render('content/_bio', ['person' => $bioSlug]) ?>
</div>
<?php endforeach ?>
</div>
<?php endforeach ?>
<div class="row-fluid">
<div class="span3"></div>
<div class="span6">
@ -68,20 +50,6 @@
<div class="span6">
<?php echo View::render('content/_bio', ['person' => 'michael-huemer']) ?>
</div>
<div class="span6">
<div class="photo-container">
<img src="/img/team/spooner-644x450.jpg" alt="you!"/>
</div>
<div>
<h4>You</h4>
<div class="meta spacer1">Technical or Media Advisor</div>
<p>
LBRY is seeking an extremely experienced technical advisor or an advisor with a strong background in the publishing and media space.
If you're that person or have a suggestion,
<a href="mailto:jeremy@lbry.io?subject=Advisor" class="link-primary">let us know</a>.
</p>
</div>
</div>
</div>
</div>
<?php echo View::render('nav/learnFooter') ?>