mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-09-01 17:55:10 +00:00
20 lines
710 B
PHP
20 lines
710 B
PHP
<?php Response::setMetaDescription(__('Download/install the latest version of LBRY for %os%.', ['%os%' => $osTitle])) ?>
|
|
<?php NavActions::setNavUri('/get') ?>
|
|
<?php echo View::render('nav/header', ['isDark' => false]) ?>
|
|
|
|
<main class="column-fluid">
|
|
<div class="span7">
|
|
<div class="cover cover-dark cover-dark-grad content content-stretch content-dark">
|
|
<h1>LBRY for <?php echo $osTitle ?> <span class="<?php echo $osIcon ?>"></span></h1>
|
|
<p>LBRY is </p>
|
|
</div>
|
|
</div>
|
|
<div class="span5">
|
|
<?php echo View::render('download/_list', [
|
|
'excludeOs' => $os
|
|
]) ?>
|
|
<?php echo View::render('download/_social') ?>
|
|
</div>
|
|
</main>
|
|
|
|
<?php echo View::render('nav/footer') ?>
|