team-3/src/c3nav/api/templates/rest_framework/api.html

28 lines
814 B
HTML
Raw Normal View History

2016-09-12 01:56:02 +02:00
{% extends "rest_framework/base.html" %}
{% load static %}
{% load compress %}
{% block title %}{% if name %}{{ name }} {% endif %}c3nav API{% endblock %}
{% block bootstrap_navbar_variant %}{% 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 %}
2016-09-12 02:16:46 +02:00
{% block description %}
{% if breadcrumblist|length == 1 %}
<p>Welcome to the c3nav RESTful API.</p>
{% else %}{{ description }}{% endif %}
{% endblock %}