base.html
53 lines
| 2.2 KiB
| text/html
|
HtmlDjangoLexer
|
r120 | {% load static %} | ||
|
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'> | ||
|
r120 | <link rel="stylesheet" href="{% static 'static/css/style.css' %}" type="text/css" /> | ||
|
r129 | <script src="{% static 'static/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> | ||||
{% block header %} | ||||
<nav> | ||||
<a href="/abscontrol">ABS</a> | | ||||
<a href="#">CR</a> | | ||||
<a href="#">DDS</a> | | ||||
<a href="#">JARS</a> | ||||
</nav> | ||||
{% endblock %} | ||||
</header> | ||||
|
r120 | {% block content %} | ||
|
r119 | <div id="content"> | ||
|
r120 | <nav> | ||
<p><a href="/">Home</a></p> | ||||
<p><a href="/contact">Contact</a></p> | ||||
</nav> | ||||
</div> | ||||
|
r119 | {% endblock %} | ||
<footer> | ||||
{% block footer %} | ||||
|
r120 | <p>© Copyright by Jicamarca Radio Observatory</p> | ||
|
r119 | {% endblock %} | ||
</footer> | ||||
</div> | ||||
</body> | ||||
</html> | ||||