Files
musiclist-server/users/templates/users/base.html
Daniel Cortes 3568abfbc7 Commit inicial
Habia trabajado un buen poco pero como vi que tenia que separar los
repositorios perdi bastante la historia :c
2020-05-22 00:05:27 -04:00

20 lines
716 B
HTML

{% load static %}
<!DOCTYPE html>
<html lang="es">
<head>
<title>{% block title %}MusicList{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{% static "users/css/normalize.css" %}">
<link rel="stylesheet" type="text/css" href="{% static "users/css/base.css" %}">
{% block extrastyle %}{% endblock %}
{% block extrahead %}{% endblock %}
{% block responsive %}
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0">
{% endblock %}
{% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE">{% endblock %}
</head>
<body>
<main>
{% block content %}{% endblock %}
</main>
</body>
</html>