mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 09:37:26 +00:00
60 lines
2.4 KiB
PHP
60 lines
2.4 KiB
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">
|
|
<div class="cover cover-dark cover-dark-grad">
|
|
<div class="content content-dark">
|
|
<div class="meta meta-large">
|
|
<span class="icon-mobile"></span> <span class="icon-windows"></span> <span class="icon-android"></span>
|
|
</div>
|
|
<h1><?php echo __('I want LBRY for mobile, Windows, or shudder at the phrase "command line".') ?></h1>
|
|
<p class="pflow">LBRY is coming out on your favorite platform soon. Join our list to know when.</p>
|
|
<?php echo View::render('mail/joinList', [
|
|
'submitLabel' => 'Go',
|
|
'returnUrl' => '/get',
|
|
'listId' => Mailchimp::LIST_GENERAL_ID,
|
|
'mergeFields' => ['CLI' => 'No'],
|
|
'btnClass' => 'btn-alt'
|
|
]) ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="span6">
|
|
<div class="cover cover-light">
|
|
<div class="content">
|
|
<div class="meta meta-large">
|
|
<span class="icon-linux"></span> <span class="icon-apple"></span>
|
|
</div>
|
|
<h1><?php echo __('I am a Linux or OS X user comfortable from the command line.') ?></h1>
|
|
<p class="pflow">Earn early adopter rewards and interact directly with developers via our Alpha client.</p>
|
|
<div class="spacer1">
|
|
<?php echo View::render('mail/joinList', [
|
|
'submitLabel' => 'Go',
|
|
'listId' => Mailchimp::LIST_GENERAL_ID,
|
|
'mergeFields' => ['CLI' => 'Yes'],
|
|
'fbEvent' => 'Alpha',
|
|
'returnUrl' => '/get?email=1'
|
|
]) ?>
|
|
</div>
|
|
<?php if (!$isSubscribed): ?>
|
|
<div class="meta">
|
|
Already signed up or really hate sharing your email? <a href="/get?email=1" class="link-primary">Click here.</a>
|
|
</div>
|
|
<?php else: ?>
|
|
<div class="content-inset">
|
|
<ul class="no-style">
|
|
<li>
|
|
<a href="/linux" class="link-primary"><span class="icon-linux"></span> Linux</a>
|
|
</li>
|
|
<li>
|
|
<a href="/osx" class="link-primary"><span class="icon-apple"></span> OS X</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<?php endif ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?php echo View::render('nav/footer') ?>
|