mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
17 lines
594 B
PHP
17 lines
594 B
PHP
<?php Response::setMetaDescription(__('description.no-os')) ?>
|
|
<?php Response::setMetaTitle(__('global.get')) ?>
|
|
<?php Response::addMetaImage(Request::getHostAndProto() . '/img/lbry-ui.png') ?>
|
|
<?php echo View::render('nav/_header', ['isDark' => false]) ?>
|
|
<main class="column-fluid">
|
|
<div class="span6">
|
|
<?php echo View::render('download/_list', [
|
|
'title' => __('download.select')
|
|
]) ?>
|
|
</div>
|
|
<div class="span6">
|
|
<?php echo View::render('download/_social', [
|
|
'cssClasses' => $socialCssClasses
|
|
]) ?>
|
|
</div>
|
|
</main>
|
|
<?php echo View::render('nav/_footer') ?>
|