aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: c496873c2b4e7f204ff2e1bf83dfe7b2aae45e97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html>
    <head>
        <title>Cherry Flavored Bugs Everywhere!</title>
        <link rel="stylesheet" type="text/css" media="screen" 
              href="/static/style/aal.css" />
        <link rel="stylesheet" type="text/css" media="screen"
              href="/static/style/cfbe.css" />
    </head>
    
    <body>
        <div id="logo"><p>Cherry Flavored Bugs Everywhere!</p></div>
        <div id="header"><h1>stevelosh</h1></div>
        {% block content %}{% endblock %}
    </body>
</html>