1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {% load staticfiles %}
- <!DOCTYPE html>
- <html lang="es">
- <head>
-
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
-
- <meta name="description" content="Aplicación web carrerade Industrial UMSA">
- <meta name="robots" content="index, follow">
- <meta name="author" content="Rodrigo Garcia, https://rmgss.net">
- <link rel="shortcut icon" type="image/png" href="/static/favicon.png">
- <title>{% block titulo %} {{ titulo }} {% endblock %}</title>
- <!-- Bootstrap core CSS -->
- <link href="/static/bootstrap-3.3.7-dist/dist/css/bootstrap.min.css" rel="stylesheet">
- <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
- <link href="/static/bootstrap/assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
- <!-- Custom styles for this template -->
- <link href="/static/clubindus.css" rel="stylesheet">
- </head>
-
- </head>
- <body>
-
- <h4> Ingeniería INDUSTRIAL - UMSA</h4>
- {% block navegacion %}
-
- {% endblock %}
- {% block content %}
-
- {% endblock %}
- {% block footer %}
-
- {% endblock %}
- </body>
-
- </html>
|