AACResults/templates/head.html

25 lines
777 B
HTML
Raw Permalink Normal View History

2018-08-14 08:55:34 +00:00
<!DOCTYPE html>
<html lang="en-ZA">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Atlantic Athletic Club Results</title>
2018-08-14 08:55:34 +00:00
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
</head>
{%- set ns.start = getstart -%}
{%- set ns.show = getshow -%}
{# Reset arguments, so as not to display standard arguments in the query part of the URL #}
{%- set ns.query = request.args | cleandict -%}
{%- if ns.start == 0 -%}
{%- set ns.start = None -%}
2018-08-14 08:55:34 +00:00
{%- endif -%}
{%- if ns.show == 0 or ns.show == PAGE_SIZE -%}
{%- set ns.show = None -%}
{%- endif -%}
2018-08-14 08:55:34 +00:00
<body>
{% include 'tabs.html' with context -%}