mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-09-02 10:15:10 +00:00
created the landing the page for the Bangalore meetup, @jsigwart kindly update the background image if there's a need to. thanks
31 lines
1.6 KiB
PHP
31 lines
1.6 KiB
PHP
<?php Response::setMetaDescription(__('Welcome To The LBRY Meetup')) ?>
|
|
<?php Response::setMetaTitle(__('LBRY Welcomes You')) ?>
|
|
<?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-image: url(/img/table2.jpg)">
|
|
<div class="content content-dark text-center">
|
|
<h1 class="cover-title cover-title-tile cover-item--outline">
|
|
LBRY Welcomes You To The Bangalore Blockchain Application Development Meetup
|
|
</h1>
|
|
<h3 class="cover-item--outline">We're excited to share about LBRY with you!
|
|
</h3>
|
|
<div class="spacer1">
|
|
<a href="#about" class="btn-primary btn-large">Tell Me More!</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="cover cover-light" id="about">
|
|
<div class="content content-light content-readable">
|
|
<h3>Enter your email address to receive LBRY updates, news, and information for India's LBRYians!</h3>
|
|
<p>As an open source project, our development and future relies on our communities around the world, and we're delighted to see our community growing in India. Please enter your email below and we'll give you instructions to redeem the LBC as mentioned by our team.</p>
|
|
<?php echo View::render('mail/_subscribeForm', [
|
|
'tag' => 'bangalore',
|
|
'submitLabel' => 'Sign me up',
|
|
'hideDisclaimer' => true,
|
|
'largeInput' => true,
|
|
'btnClass' => 'btn-alt btn-large',
|
|
]) ?>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?php echo View::render('nav/_footer') ?>
|