<html>
<head>
{% if title %}
<title>{{ title }} - P4 Tree Map</title>
{% else %}
<title>Perforce Depot Tree Map</title>
{% endif %}
<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div>
P4TreeMap:
<a href="{{ url_for('index') }}">Home</a>
</div>
<hr>
{% with messages = get_flashed_messages(with_categories=True) %}
{% for category, message in messages %}
<div class="{{ category }}">{{ message }}</div>
{% endfor %}
{% endwith %}
{% block content %}{% endblock %}
</body>
</html>