mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
25 lines
748 B
PHP
25 lines
748 B
PHP
<?php Response::setMetaDescription($post->getTitle()) ?>
|
|
<?php Response::addMetaImages($post->getImageUrls()) ?>
|
|
<?php NavActions::setNavUri('/learn') ?>
|
|
|
|
<main class="ancillary">
|
|
<section class="hero hero--half-height">
|
|
<div class="inner-wrap inner-wrap--center-hero">
|
|
<h1>Frequently Asked Questions</h1>
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<div class="inner-wrap">
|
|
<h2><?php echo htmlentities($post->getTitle()) ?></h2>
|
|
<p><a href="/faq">« {{page.faq.back}}</a></p>
|
|
<?php echo $post->getContentHtml() ?>
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<div class="inner-wrap">
|
|
<p>See a mistake? <a href="<?php echo $post->getGithubEditUrl() ?>">Edit this page on GitHub</a>.</p>
|
|
</div>
|
|
</section>
|
|
</main>
|