forked from ulovliglogning/ulovliglogning.dk
ec4603cd11
with integrated Call to action, and a nicer language switcher
53 lines
1.8 KiB
HTML
53 lines
1.8 KiB
HTML
---
|
|
layout: default
|
|
---
|
|
{% assign global = site.data.common.global %}
|
|
{% for section in page.sections %}
|
|
<section id="{{ section.id }}" class="{% cycle 'odd', 'even' %}">
|
|
{% if forloop.first %}
|
|
<nav id="navElm">
|
|
<div class="langSwitcher left">
|
|
{% for tongue in site.languages %}
|
|
<a class="lang-{{ tongue }} {% if tongue == site.active_lang %}activeLang{% endif %}" href="{% if tongue == site.default_lang %} {{site.baseurl}}{{page.url}} {% else %} {{site.baseurl}}/{{ tongue }}{{page.url}} {% endif %}">{{ tongue }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
<div id="navLinks" class="center">
|
|
{% for section in page.sections %}
|
|
{% if section.link %}
|
|
<a href="#{{ section.id }}" data-link-for="{{ section.id }}">{{ section.link }}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
<div class="right"></div>
|
|
</nav>
|
|
{% endif %}
|
|
{% if section.id != "faq" %}
|
|
<div class="content">
|
|
<h1>{{ section.heading }}</h1>
|
|
<div class="paragraphs">
|
|
{{ section.content | markdownify }}
|
|
{% if section.id == "wannahelp" %}
|
|
<form class="signup" action="https://ulovliglogning.dk/dynamic/signup/" method="post">
|
|
<input type="email" required="true" placeholder="{{ global.emailplaceholder }}" name="email">
|
|
<input type="text" name="lang" value="{{ site.active_lang }}" class="hidden">
|
|
<input type="submit" name="submit" value="{{ global.signup }}">
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% elsif section.id == "faq" %}
|
|
{% for question in section.content %}
|
|
<div class="qa">
|
|
<div class="qa--question">
|
|
<h3>{{ question.heading }}</h3>
|
|
</div>
|
|
<div class="qa--answer">
|
|
{{ question.content | markdownify }}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</section>
|
|
{% endfor %}
|
|
|