Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
update faq page template
  • Loading branch information
goodcodeguy committed Jun 22, 2016
1 parent 4ef50b1 commit 81db17a
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions faq/index.html
Expand Up @@ -7,13 +7,23 @@
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->

<!-- Main -->
<article id="main">

<header class="special container">
<span class="icon fa-question-circle"></span>
<h3>Sometimes questions are more important than answers.</h3>
</header>


<section class="wrapper style5 container">
{% assign faqs = site.faqs | sort: 'order' %}
{% for faq in faqs %}
<div class="faq_item">
<h4>{{ faq.question }}</h4>
{{ faq.content }}
</div>
{% endfor %}
</section>

</article>

0 comments on commit 81db17a

Please sign in to comment.