cnap-cobre/synapse

View on GitHub
backend/templates/base_template.html

Summary

Maintainability
Test Coverage
{% load static %}
{% load compress %}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="76x76" href="{% static 'favicon-76.png' %}">
<link rel="icon" type="image/png" sizes="96x96" href="{% static 'favicon-96.png' %}">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
 
<title>Synapse</title>
 
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta name="viewport" content="width=device-width" />
 
 
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha256-916EbMg70RQy9LHiGkXzG8hSg9EdNy97GazNG/aiY1w=" crossorigin="anonymous" />
 
<!-- Paper Dashboard core CSS -->
{% compress css %}
<link rel="stylesheet" type="text/x-scss" href="{% static 'scss/paper-dashboard.scss' %}" />
<link rel="stylesheet" type="text/x-scss" href="{% static 'scss/social_login_buttons.scss' %}" />
{% endcompress %}
 
<!-- Fonts and icons -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Muli:400,300' rel='stylesheet' type='text/css' />
<link href="{% static 'css/themify-icons.css' %}" rel="stylesheet" />
</head>
 
<body>
 
{% block body_content %}
 
{% endblock %}{# body_content #}
 
 
 
{% block extra_body %}
{% endblock %}{# extra_body #}
</body>
 
</html>