-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy pathstart.html
17 lines (16 loc) · 1.16 KB
/
start.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{%- set footer_content = get_part('start page footer', get_part('global footer')) %}
{%- set page_title = get_part('start page title', word('Interviews')) %}
{%- set tab_title = get_part('start page tab title', word('Interviews')) %}
{%- set extra_css = get_part('start page extra css') %}
{%- set extra_js = get_part('start page extra javascript') %}
{%- set navigation_bar_html = get_part('start page navigation bar html') %}
{%- extends 'flask_user/public_base.html' %}
{%- block content %}
<h1 class="dastartpage">{{ get_part('start page heading', word('Available interviews')) }}</h1>
{{ get_part('start page pre') }}
<ul class="dastartpage">
{%- for interview in interview_info %}
<li><a href="{{ interview['link'] }}"{% if interview['status_class'] %} class="{{ interview['status_class'] }}"{% endif %}>{{ interview['title'] }}</a>{% if interview['subtitle'] %} <span class="{% if interview['subtitle_class'] %}{{ interview['subtitle_class'] }}{% else %}text-body-secondary dasubtitle{% endif %}">{{ interview['subtitle'] }}</span>{% endif %}</li>
{%- endfor %}
</ul>{{ get_part('start page post') }}
{%- endblock %}