|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
|
|
|
|
<head>
|
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
|
|
<link rel="stylesheet" type="text/css" href="{{url_for("static", filename='css/style.css')}}">
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
<div id="main">
|
|
|
<div id="header">
|
|
|
<div id="logo">
|
|
|
<h1>Curso de <span class="alternate_colour">Flask</span></h1>
|
|
|
</div>
|
|
|
<div id="menubar">
|
|
|
<ul id="menu">
|
|
|
<!-- put class="tab_selected" in the li tag for the selected page - to highlight which page you're on -->
|
|
|
<li class="tab_selected"><a href="/">Home</a></li>
|
|
|
<li><a href="#">Flask</a></li>
|
|
|
<li><a href="#">OpenWebeninars</a></li>
|
|
|
|
|
|
</ul>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div id="site_content">
|
|
|
<div id="panel"><img src="{{url_for("static", filename='css/panel.png')}}" alt="tree tops" /></div>
|
|
|
<div class="sidebar">
|
|
|
<!-- insert your sidebar items here -->
|
|
|
<h1>Blogroll</h1>
|
|
|
<ul>
|
|
|
<li><a href="#">Flask</a></li>
|
|
|
<li><a href="#">Python3</a></li>
|
|
|
<li><a href="#">OpenWeninars</a></li>
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
<div id="content">
|
|
|
{% block content %}{% endblock %}
|
|
|
</div>
|
|
|
</div>
|
|
|
<div id="footer">Copyright © Company Name. All Rights Reserved. | <a href="http://validator.w3.org/check?uri=referer">XHTML</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a> | <a href="http://www.dcarter.co.uk">design by dcarter</a></div>
|
|
|
</div>
|
|
|
<div style="text-align: center; font-size: 0.75em;">Diseño descargado desde <a href="http://www.misplantillas.com/">plantillas web gratis</a>.</div></body>
|
|
|
</html>
|