base.html
44 lines
| 1.9 KiB
| text/html
|
HtmlDjangoLexer
|
r119 | <!DOCTYPE html> | ||
<html lang="en"> | ||||
<head> | ||||
<meta charset="utf-8" /> | ||||
{% comment %} | ||||
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame | ||||
Remove this if you use the .htaccess --> | ||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||||
{% endcomment %} | ||||
|
r140 | <link href='http://fonts.googleapis.com/css?family=Droid+Sans|Ubuntu:400,500,300italic|Open+Sans:400,300,600|Open+Sans+Condensed:300,700|Roboto+Condensed:400,300' rel='stylesheet' type='text/css'> | ||
|
r210 | <link rel="stylesheet" href="{{ STATIC_URL }}css/style.css" type="text/css" /> | ||
<script src="{{ STATIC_URL }}js/jquery-1.9.1.min.js"></script> | ||||
|
r134 | {% block scripting %}{% endblock %} | ||
|
r119 | <title>{% block title %}JRO WEB APPS::::{% endblock %}</title> | ||
<meta name="description" content="JRO WEB APPLICATIONS" /> | ||||
<meta name="author" content="Jose Antonio Sal y Rosas Celi" /> | ||||
{# <meta name="viewport" content="width=device-width; initial-scale=1.0" /> #} | ||||
{% comment %} | ||||
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references --> | ||||
<link rel="shortcut icon" href="/favicon.ico" /> | ||||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" /> | ||||
{% endcomment %} | ||||
</head> | ||||
<body> | ||||
<div id="schema"> | ||||
<header> | ||||
|
r199 | {% block header %} | ||
<div id="Main_Head"> | ||||
<label class="Main_Title">Jicamarca Radio Observatory</label> | ||||
</div> | ||||
{% endblock %} | ||||
|
r119 | </header> | ||
|
r120 | {% block content %} | ||
|
r180 | <div id="content"></div> | ||
|
r119 | {% endblock %} | ||
<footer> | ||||
{% block footer %} | ||||
|
r181 | <p>© Copyright 2013 by Jicamarca Radio Observatory</p> | ||
|
r119 | {% endblock %} | ||
</footer> | ||||
</div> | ||||
</body> | ||||
</html> | ||||