FIX #386 added contact us and redirect to hello@lbry.io ( TESTED Locally) (#390)

* Create contact-us.php with link on /learn page
This commit is contained in:
YULIUS KURNIAWAN KRISTIANTO 2018-02-23 03:27:50 +07:00 committed by Thomas Zarebczan
parent 7bc04ea2ce
commit e3434149be
3 changed files with 8 additions and 1 deletions

View file

@ -85,6 +85,7 @@ learn:
explorer: Block Explorer explorer: Block Explorer
how: Learn how LBRY will forever improve how we create and share with one another. how: Learn how LBRY will forever improve how we create and share with one another.
join: Join Us join: Join Us
contact: Contact Us
nerd: Nerd Out nerd: Nerd Out
rebels: Learn more about the relentless rebels changing the internet. rebels: Learn more about the relentless rebels changing the internet.
team: About The Team team: About The Team

View file

@ -0,0 +1,3 @@
<div class="spacer1">
<a href="mailto://hello@lbry.io" class="link-primary"><span class="icon icon-envelope"></span><span class="btn-label">hello@lbry.io</span></a>
</div>

View file

@ -57,8 +57,11 @@
<div class="content content-dark content-tile"> <div class="content content-dark content-tile">
<h3>{{learn.join}}</h3> <h3>{{learn.join}}</h3>
<?php echo View::render('social/_list') ?> <?php echo View::render('social/_list') ?>
<h3>{{learn.contact}}</h3>
<?php echo View::render('mail/contact-us') ?>
</div> </div>
</div> </div>
</div> </div>
</main>
</main>
<?php echo View::render('nav/_footer') ?> <?php echo View::render('nav/_footer') ?>