summaryrefslogtreecommitdiff
path: root/tuskar_ui/infrastructure/templates/infrastructure/base.html
blob: c5ebbc4c51bcbe07ff7c328954155da260b42bbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends 'base.html' %}

{% block css %}
  {{block.super}}

  {% load compress %}
  {% compress css %}
  <link href='{{ STATIC_URL }}infrastructure/scss/infrastructure.scss' type='text/scss' media='screen' rel='stylesheet' />
  <link href="{{ STATIC_URL }}horizon/lib/font-awesome/css/font-awesome.css" type="text/css" media="screen" rel="stylesheet" />

  {% endcompress %}
{% endblock %}

{% block js %}
  {{ block.super }}
  {% include "infrastructure/_scripts.html" %}
{% endblock %}