django-allauth-ens/allauth_ens/templates/account/base.html

56 lines
1.2 KiB
HTML
Raw Normal View History

2017-08-03 12:40:52 +02:00
{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{% block title %}{% endblock %}</title>
{# Responsive UI #}
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{# CSS #}
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:400,700|Roboto+Slab:400">
<link rel="stylesheet"
href="{% static "allauth_ens/screen.css" %}">
{# JS #}
<script type="text/javascript"
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha256-k2WSCIexGzOj3Euiig+TlR8gA0EmPjuc79OEeY5L45g="
crossorigin="anonymous"></script>
<script type="text/javascript"
src="{% static "allauth_ens/authens.js" %}"></script>
</head>
<body>
<div class="wrapper">
<header>
<button type="button" class="history-back">
<img src="{% static "allauth_ens/images/64px-Chevron_left_font_awesome.svg.png" %}">
</button>
<h1>{% block header-title %}{% endblock %}</h1>
</header>
{% include "account/block-messages.html" %}
{% block messages-extra %}{% endblock %}
<div class="content-wrapper">
{% block content %}{% endblock %}
</div>
</div>
</body>
</html>