mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-31 01:11:25 +00:00
News signup page - tagging template for lists (#441)
* Create News signup page - tagging template for lists
This commit is contained in:
parent
9e48e25fa9
commit
06b12f07c7
1 changed files with 25 additions and 0 deletions
25
view/template/page/newslist.php
Normal file
25
view/template/page/newslist.php
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
<?php Response::setMetaDescription(__('description.join')) ?>
|
||||||
|
<?php Response::setMetaTitle(__('title.join')) ?>
|
||||||
|
<?php echo View::render('nav/_header', ['isDark' => true, 'isAbsolute' => true]) ?>
|
||||||
|
<main>
|
||||||
|
<div class="cover cover-dark cover-center cover-full cover--dark-overlay" style="background-color:rgb(74, 175, 152)">
|
||||||
|
<div class="content content-dark text-center">
|
||||||
|
<h1 class="cover-title cover-title-tile cover-item--outline">
|
||||||
|
Join Our List for LBRY Updates!
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cover cover-light" id="about">
|
||||||
|
<div class="content content-light content-readable">
|
||||||
|
<h3>Enter your email below</h3>
|
||||||
|
<?php echo View::render('mail/_subscribeForm', [
|
||||||
|
'tag' => 'news',
|
||||||
|
'submitLabel' => 'Sign me up',
|
||||||
|
'hideDisclaimer' => true,
|
||||||
|
'largeInput' => true,
|
||||||
|
'btnClass' => 'btn-alt btn-large',
|
||||||
|
]) ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
<?php echo View::render('nav/_footer') ?>
|
Loading…
Add table
Reference in a new issue