You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
917 B
HTML

---
layout: home
---
<main role="main" class="container">
<div class="container-fluid">
<div class="row">
<nav class="col-md-3 d-none d-md-block" id="myScrollspy">
<ul class="nav nav-pills flex-column position-fixed">
<h5>Die Antworten von<br>Dagmar Dewald</h5>
{% for topic in site.data.topics %}
<li class="nav-item">
<a class="nav-link {% if forloop.first %}active{% endif %}" href="#{{ topic.slug }}">{{ topic.title }}</a>
</li>
{% endfor %}
</ul>
</nav>
<div class="col-md-9 col-sm-12">
{% for topic in site.data.topics %}
<div id="{{ topic.slug }}">
<h2 style="padding-top:5rem;margin-top:-5rem;">{{ topic.title }}</h2>
{% for question in topic.questions %}
<h5>{{ question.text }}</h5>
<p>{% include dewald/{{ question.slug }}.html %}</p>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</div>
</main>