30 lines
921 B
HTML
30 lines
921 B
HTML
<html>
|
|
<head>
|
|
<title>{% block title %}Fincom Webapp{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
{% load staticfiles %}
|
|
<link href="{% static "css/site.css" %}" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div class="nav">
|
|
<a href="/logout">logout</a>
|
|
<h3>Fincom Web App</h3>
|
|
</div>
|
|
<div class="container">
|
|
{% block main %}
|
|
{% endblock %}
|
|
</div>
|
|
{% block bottom %}
|
|
{% endblock %}
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', 'UA-62761470-2', 'auto');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
</body>
|
|
</html>
|