mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-09-03 02:35:11 +00:00
31 lines
No EOL
1.3 KiB
PHP
31 lines
No EOL
1.3 KiB
PHP
<?php Response::setMetaDescription(__('description.get')) ?>
|
|
<?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>{{global.get}}</h1>
|
|
<?php if (Session::get(Session::KEY_DOWNLOAD_ACCESS_ERROR)): ?>
|
|
<div class="notice notice-error spacer1"><?php echo Session::get(Session::KEY_DOWNLOAD_ACCESS_ERROR) ?></div>
|
|
<?php Session::unsetKey(Session::KEY_DOWNLOAD_ACCESS_ERROR) ?>
|
|
<?php endif ?>
|
|
|
|
<?php if (Session::get(Session::KEY_PREFINERY_USER_ID)): ?>
|
|
<h3>You're On The List</h3>
|
|
<p>We pull thousands of people off the list regularly.</p>
|
|
<p>The longer you are on the list and the more people you invite, the sooner you will be invited.</p>
|
|
<?php echo View::render('download/_refer') ?>
|
|
<?php else: ?>
|
|
<p>{{download.signup}}</p>
|
|
<?php echo View::render('download/_signup') ?>
|
|
<?php endif ?>
|
|
</div>
|
|
</div>
|
|
<div class="span5">
|
|
<?php echo View::render('download/_social') ?>
|
|
<?php echo View::render('download/_publish') ?>
|
|
</div>
|
|
</main>
|
|
|
|
<?php echo View::render('nav/_footer') ?>
|