예제 #1
0
def staff():
    """
        Staff Page
    """
    title = "Staff"
    staff_data = load_yaml("staff.yaml")
    return render_template('about/staff.html', **locals())
예제 #2
0
def committee():
    """
        Scientific Panel Page
    """
    title = "Scientific Advisory Committee"
    committee_data = load_yaml("advisory-committee.yaml")
    return render_template('about/committee.html', **locals())
예제 #3
0
def funding():
    title = "Funding"
    funding_set = load_yaml('funding.yaml')
    return render_template('about/funding.html', **locals())
예제 #4
0
def collaborators():
    title = "Collaborators"
    collaborator_data = load_yaml("collaborators.yaml")
    return render_template('about/collaborators.html', **locals())