Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
{%- 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 %}