23 lines
481 B
HTML
23 lines
481 B
HTML
{%- extends "bootstrap/base.html" %}
|
|
{% import "bootstrap/fixes.html" as fixes %}
|
|
|
|
{% block title %}
|
|
yt-dls
|
|
{% endblock %}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
{{ fixes.ie8() }}
|
|
{% endblock %}
|
|
|
|
{% block styles %}
|
|
{{ super() }}
|
|
{# Commented out cause don't exist
|
|
<link rel="stylesheet" type="text/css"
|
|
href="{{url_for('static', filename='example.css')}}">
|
|
#}
|
|
{% endblock %}
|
|
|
|
{% block navbar %}
|
|
{{ nav.frontend_top.render() }}
|
|
{% endblock %} |