add faq categories, fix up a few faqs

This commit is contained in:
Alex Grintsvayg 2016-07-11 22:21:24 -04:00
parent d4095ca5aa
commit 5ba3ecacf4

View file

@ -29,34 +29,6 @@
<?php if ($post->hasAuthor()): ?>
<?php echo View::render('content/_postAuthor', ['post' => $post]) ?>
<?php endif ?>
<?php /*
<nav class="content prev-next row-fluid">
<div class="prev span6">
<?php if ($prevPost = $post->getPrevPost()): ?>
<div class="prev-next-label">
<a href="/<?php echo $prevPost->getRelativeUrl() ?>" class="link-primary"> Previous</a>
</div>
<div class="meta">
<a href="/<?php echo $prevPost->getRelativeUrl() ?>">
<?php echo htmlentities($prevPost->getTitle()) ?>
</a>
</div>
<?php endif ?>
</div>
<div class="next span6">
<?php if ($nextPost = $post->getNextPost()): ?>
<div class="prev-next-label">
<a href="/<?php echo $nextPost->getRelativeUrl() ?>" class="link-primary">Next </a>
</div>
<div class="meta">
<a class="prev-next-title" href="/<?php echo $nextPost->getRelativeUrl() ?>">
<?php echo htmlentities($nextPost->getTitle()) ?>
</a>
</div>
<?php endif ?>
</div>
</nav> */ ?>
</main>
<?php echo View::render('nav/_footer') ?>