##// END OF EJS Templates
- Primer prototipo de la aplicacion web para ABS.
- Primer prototipo de la aplicacion web para ABS.

File last commit:

r119:120
r119:120
Show More
base.html
55 lines | 1.9 KiB | text/html | HtmlDjangoLexer
<!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>
&copy; Copyright by Jicamarca Radio Observatory
</p>
{% endblock %}
</footer>
</div>
</body>
</html>