forked from organicmaps/website
Simplified templates
Signed-off-by: S. Kozyr <s.trump@gmail.com>
This commit is contained in:
parent
1e21793872
commit
8306073c87
3 changed files with 6 additions and 11 deletions
|
@ -6,14 +6,14 @@
|
|||
{%- set resource = section %}
|
||||
{%- set resource_title = resource.title %}
|
||||
{%- set resource_path = resource.path %}
|
||||
{%- elif taxonomy %}
|
||||
{%- set resource = taxonomy %}{# taxonomy has only 'name' and 'slug' properties #}
|
||||
{%- set resource_path = '/' ~ resource.name ~ '/' %}
|
||||
{%- set resource_title = resource.name %}
|
||||
{%- elif term %}
|
||||
{%- set resource = term %}{# taxonomy term has only 'name', 'slug' and 'path' properties #}
|
||||
{%- set resource_path = resource.path %}
|
||||
{%- set resource_title = resource.name %}
|
||||
{%- elif taxonomy %}
|
||||
{%- set resource = taxonomy %}{# taxonomy has only 'name' and 'slug' properties #}
|
||||
{%- set resource_path = '/' ~ resource.name ~ '/' %}
|
||||
{%- set resource_title = resource.name %}
|
||||
{%- endif %}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{% block content %}
|
||||
<h1>F.A.Q. - {{ term.name }}</h1>
|
||||
{%- for faq_page in term.pages -%} {# How to sort questions #}
|
||||
<h3>{{ faq_page.extra | get(key="question", default="Question") }}</h3>
|
||||
<h3>{{ faq_page.extra | get(key="question", default="[No extra.question provided]") }}</h3>
|
||||
{{ faq_page.content | safe }}
|
||||
{%- endfor -%}
|
||||
{% endblock %}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
get_section(path="news/_index.md"),
|
||||
get_page(path="donate/index.md"),
|
||||
get_page(path="support-us/index.md"),
|
||||
get_page(path="faq/index.md"),
|
||||
] %}
|
||||
{% set translated = page.translations | filter(attribute='lang', value=lang) | first %}
|
||||
{% if translated %}
|
||||
|
@ -25,12 +26,6 @@
|
|||
</span>
|
||||
•
|
||||
{% endfor %}
|
||||
<span class="top_menu_faq top_menu_item">
|
||||
<a href="{{ get_taxonomy(kind="faq") | get(key="permalink") }}">
|
||||
<span>F.A.Q.</span>
|
||||
</a>
|
||||
</span>
|
||||
•
|
||||
<span class="top_menu_item">
|
||||
<a href="https://github.com/organicmaps/organicmaps" target="_blank" class="top_menu_github">
|
||||
<span>GitHub</span>
|
||||
|
|
Loading…
Add table
Reference in a new issue