base.html
55 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 %} | ||||
<link rel="stylesheet" href="{{ STATIC_URL }}style.css" type="text/css" /> | ||||
<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> | ||||
<div id="content"> | ||||
{% block content %} | ||||
<nav> | ||||
<p> | ||||
<a href="/">Home</a> | ||||
</p> | ||||
<p> | ||||
<a href="/contact">Contact</a> | ||||
</p> | ||||
</nav> | ||||
{% endblock %} | ||||
</div> | ||||
<footer> | ||||
{% block footer %} | ||||
<p> | ||||
© Copyright by Jicamarca Radio Observatory | ||||
</p> | ||||
{% endblock %} | ||||
</footer> | ||||
</div> | ||||
</body> | ||||
</html> | ||||