File: base.html

package info (click to toggle)
grantlee5 5.3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 4,004 kB
  • sloc: cpp: 25,617; javascript: 6,043; python: 299; sh: 97; perl: 37; ruby: 24; makefile: 20
file content (28 lines) | stat: -rw-r--r-- 665 bytes parent folder | download | duplicates (11)
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
<html>
  <head>
    <title>{% block title %}{% endblock %}</title>
    <link rel="stylesheet" href="/shared/base.css" type="text/css" />
    <script src="/shared/jquery-2.0.3.js"></script>
    {% block head %}{% endblock %}
  </head>
  <body>
    <div id="container">
      <div id="header">
        {% block header %}
        {% include "shared/navbar.html" %}
        {% endblock %}
      </div>
      <div id="border">
        <div id="content">
        {% block content %}
        Main Content
        {% endblock %}
        </div>
      </div>
      <div id="footer">
        {% block footer %}
        {% endblock %}
      </div>
    </div>
  </body>
</html>