versión visible
This commit is contained in:
36
templates/base.html
Normal file
36
templates/base.html
Normal file
@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>{% block title %}Separador de sílabas{% endblock %}</title>
|
||||
<link href="/static/css/bootstrap.css" rel="stylesheet" />
|
||||
<link href="/static/css/custom.css" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
{% block content %}{% endblock %}
|
||||
|
||||
<hr />
|
||||
|
||||
<footer>
|
||||
<p class="toright">Sitio creado por <a href="https://sergio.am">Sergio Álvarez Muñoz</a>
|
||||
(<a href="mailto:xergio@gmail.com?subject=Sílabas">xergio@gmail.com</a>)
|
||||
<small>usando <a href="http://www.nginx.org">nginx</a>, <a href="https://www.djangoproject.com/">Django</a> y <a href="http://redis.io">Redis</a></small>. <span class="temporal need design"><a href="/media/silabas.html">Lista de palabras en castellano para separar en sílabas</a></</span></p>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-28951586-2']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user