Skip to content

Commit

Permalink
fix faq pages
Browse files Browse the repository at this point in the history
  • Loading branch information
madjid-asa committed Jul 17, 2024
1 parent 9216d42 commit c4ff250
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lemarche/templates/cms/faq_page.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
{% extends "layouts/base.html" %}
{% block title %}
{{ tender.title }}{{ block.super }}
{% endblock title %}
{% block meta_description %}
<meta name="description" content="{{ page.search_description }}">
{% endblock meta_description %}
{% block content %}
<div class="container py-4 faq-page">
<h1>{{ page.title }}</h1>
<p>{{ page.intro|default:"" }}</p>
{% for block in page.faqs %}{{ block }}{% endfor %}
</div>
{% endblock %}
{% endblock content %}

0 comments on commit c4ff250

Please sign in to comment.