team-3/src/c3nav/api/templates/rest_framework/api.html
2017-12-19 19:32:58 +01:00

28 lines
886 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "rest_framework/base.html" %}
{% load static %}
{% load compress %}
{% block title %}{% if name %}{{ name }} {% endif %}c3nav API{% endblock %}
{% block bootstrap_navbar_variant %}{% endblock %}
{% block meta %}
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="NONE,NOARCHIVE" />
{% if favicon %}
<link href="{% static favicon %}" rel="icon">
{% endif %}
{% endblock %}
{% block style %}
{% compress css %}
<link href="{% static 'bootstrap/css/bootstrap.css' %}" rel="stylesheet">
<link href="{% static 'rest_framework/css/prettify.css' %}" rel="stylesheet">
<link href="{% static 'rest_framework/css/default.css' %}" rel="stylesheet">
<link href="{% static 'api/css/style.css' %}" rel="stylesheet">
{% endcompress %}
{% endblock %}
{% block branding %}
<span class="navbar-brand">c3nav API</span>
{% endblock %}