forked from ulovliglogning/ulovliglogning.dk
23 lines
872 B
HTML
23 lines
872 B
HTML
---
|
|
layout: default
|
|
---
|
|
{% assign global = site.data.common.global %}
|
|
{% for section in page.sections %}
|
|
<section id="{{ section.id }}" class="{% cycle 'odd', 'even' %}">
|
|
<h1>{{ section.heading }}</h1>
|
|
<div class="paragraphs">
|
|
{{ section.content | markdownify }}
|
|
{% if section.id == "intro" %}
|
|
<p class="ctaTxt">{{ global.ctatext | markdownify }}</p>
|
|
<a href="#wannahelp" class="cta">{% include ctascale.svg %}</a>
|
|
{% endif %}
|
|
{% 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>
|
|
</section>
|
|
{% endfor %} |