mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-29 08:21:28 +00:00
40 lines
1.5 KiB
PHP
40 lines
1.5 KiB
PHP
<?php Response::setMetaDescription(__('description.get')) ?>
|
|
<?php Response::addMetaImage(Request::getHostAndProto() . '/img/lbry-ui.png') ?>
|
|
<?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><?php echo __('download.for-os', ['%os%' => $osTitle]) ?> <span class="<?php echo $osIcon ?>"></span></h1>
|
|
<?php if ($downloadUrl): ?>
|
|
<p>
|
|
Securely download the LBRY app here, and see what all the fuss is about!
|
|
</p>
|
|
<p>
|
|
</p>
|
|
<div class="text-center">
|
|
<?php echo View::Render('download/_downloadButton', [
|
|
'buttonStyle' => 'alt',
|
|
'sourceLink' => true
|
|
])?>
|
|
<img src="https://spee.ch/5a3e08d52dd2d7cb1c63a480b45dea8b4679cf01/lbryget-gif-mastertest.gif" />
|
|
</div>
|
|
<?php else: ?>
|
|
<p>{{download.unavailable}}</p>
|
|
<?php echo View::render('mail/_subscribeForm', [
|
|
'tag' => $os,
|
|
'submitLabel' => 'Join List',
|
|
'hideDisclaimer' => true,
|
|
'largeInput' => true,
|
|
'btnClass' => 'btn-alt btn-large',
|
|
]) ?>
|
|
<?php endif ?>
|
|
</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') ?>
|