mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
20 lines
No EOL
706 B
PHP
20 lines
No EOL
706 B
PHP
<?php Response::setMetaDescription($post->getTitle()) ?>
|
|
<?php Response::addMetaImages($post->getImageUrls()) ?>
|
|
<?php NavActions::setNavUri('/learn') ?>
|
|
<?php echo View::render('nav/_header') ?>
|
|
<main>
|
|
<section class="post-content">
|
|
<div class="content">
|
|
<br />
|
|
<div class="meta">
|
|
<a href="/faq"><< {{page.faq.back}}</a>
|
|
</div>
|
|
<h1><?php echo htmlentities($post->getTitle()) ?></h1>
|
|
<?php echo $post->getContentHtml() ?>
|
|
<p class="meta">
|
|
See a mistake? <a href="<?php echo $post->getGithubEditUrl() ?>">Edit this page on GitHub</a>.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
<?php echo View::render('nav/_footer') ?>
|