mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
17 lines
621 B
PHP
17 lines
621 B
PHP
<?php Response::setMetaDescription('Download or install the latest version of LBRY.') ?>
|
|
<?php Response::setMetaTitle(__('Get LBRY')) ?>
|
|
<?php echo View::render('nav/header', ['isDark' => false]) ?>
|
|
<main class="column-fluid">
|
|
<div class="span6">
|
|
<?php echo View::render('download/_list', [
|
|
'title' => __('Select an OS')
|
|
]) ?>
|
|
</div>
|
|
<div class="span6">
|
|
<?php $socialCssClasses = 'cover cover-dark cover-dark-grad content content-dark' ?>
|
|
<?php echo View::render('download/_social', [
|
|
'cssClasses' => $socialCssClasses
|
|
]) ?>
|
|
</div>
|
|
</main>
|
|
<?php echo View::render('nav/footer') ?>
|