You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
467 B
18 lines
467 B
{% extends "templates/lilcity/index.html" %}
|
|
{% load static %}
|
|
{% load jsonify_queryset %}
|
|
|
|
{% block content %}
|
|
<div class="section">
|
|
<div class="section__center center center_sm">
|
|
<div class="title">Часто задаваемые вопросы</div>
|
|
<faq :faqs="$root.store.data.faqs"></faq>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|
|
|
|
{% block pre_app_js %}
|
|
<script>
|
|
window.LIL_STORE.data.faqs = {{ faqs|safe }};
|
|
</script>
|
|
{% endblock pre_app_js %}
|
|
|