-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
27 lines (20 loc) · 695 Bytes
/
Copy pathbase.html
File metadata and controls
27 lines (20 loc) · 695 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}codeitloadit{% endblock %}</title>
{% block css %}
<link rel="stylesheet" href="/css/style.css" />
{% endblock %}
{% block js %}
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
{% endblock %}
</head>
<body>
{% if user %}
<span id="header">Logged in as {{ user }} | <a href="/logout">Logout</a></span>
{% else %}
<span id="header"><a href="/">Home</a> | <a href="/login">Login</a></span>
{% endif %}
{% block content %}No content{% endblock %}
</body>
</html>