lbry.com/view/template/content/faq.php
2016-07-07 21:43:08 -05:00

13 lines
521 B
PHP

<?php Response::setMetaDescription('Frequently asked questions about LBRY.') ?>
<?php echo View::render('nav/header', ['isDark' => false]) ?>
<main>
<section class="content content-readable spacer2">
<h1>Frequently Asked Questions</h1>
<?php foreach($posts as $post): ?>
<div class="spacer1">
<a href="<?php echo $post->getRelativeUrl() ?>" class="link-primary"><?php echo $post->getTitle() ?></a>
</div>
<?php endforeach ?>
</section>
</main>
<?php echo View::render('nav/footer') ?>