base.html #1

  • //
  • guest/
  • robert_cowham/
  • perforce/
  • utils/
  • p4treemap/
  • main/
  • treemap/
  • app/
  • templates/
  • base.html
  • View
  • Commits
  • Open Download .zip Download (720 B)
<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>
# Change User Description Committed
#1 24066 Robert Cowham initial attempt