-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase_generic.html
More file actions
51 lines (39 loc) · 1.11 KB
/
base_generic.html
File metadata and controls
51 lines (39 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
{% load static %}
<link rel="stylesheet" href="{% static 'css/style.css' %}">
{%block title %}<title>Management and Public Interface</title>{% endblock %}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% load static %}
<link rel="stylesheet" href="{% static 'css/style.css' %}">
</head>
<body>
<figure>
<img src= href="{% static 'portal/images/logo.png' %}">
</figure>
<div class="container-fluid">
<div class="row">
<div class="col-sm-2">
{% block sidebar %}
<ul class="sidebar-nav">
<li><a href="{% url 'index' %}">app</a></li>
<li><a href="">All associates</a></li>
<li><a href="">All partners</a></li>
<li><a href="">All hospitals</a></li>
<li><a href="">All patients</a></li>
</ul>
{% endblock %}
</div>
<div class="col-sm-10 ">{% block content %}{% endblock %}</div>
</div>
</div>
</body>
<h1> </h1>
h2> </h2>
<h2> </h2>
<footer>
© 2021 eWISE LLC
</footer>
</html>