This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/resources/views/yuuno/meta/faq.twig

29 lines
1,000 B
Twig
Raw Normal View History

2016-07-31 19:36:13 +00:00
{% extends 'master.twig' %}
2016-07-31 01:32:37 +00:00
{% set title = 'Frequently Asked Questions' %}
{% block content %}
<div class="content settings">
2016-11-09 18:32:23 +00:00
<div class="content--right">
<div class="content__header content__header--alt">
Frequently Asked Questions
</div>
<div class="right-menu-nav">
{% for question in page.questions %}
2016-11-09 18:32:23 +00:00
<a href="#{{ question.faq_shorthand }}">{{ question.faq_question }}</a>
{% endfor %}
</div>
</div>
2016-11-09 18:32:23 +00:00
<div class="content--left">
{% for question in page.questions %}
2016-11-09 18:32:23 +00:00
<div class="content__header" id="{{ question.faq_shorthand }}">
{{ question.faq_question }}
<a href="#{{ question.faq_shorthand }}" class="fa fa-quote-right news-rss default"></a>
</div>
<p>{{ question.faq_answer }}</p>
{% endfor %}
</div>
<div class="clear"></div>
</div>
{% endblock %}