mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
13 lines
492 B
PHP
13 lines
492 B
PHP
<?php Response::setMetaDescription('description.faq') ?>
|
|
<?php echo View::render('nav/header', ['isDark' => false]) ?>
|
|
<main>
|
|
<section class="content content-readable spacer2">
|
|
<h1>{{page.faq.header}}</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') ?>
|