base.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {% load staticfiles %}
  2. <!DOCTYPE html>
  3. <html lang="es">
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <meta name="description" content="Aplicación web carrerade Industrial UMSA">
  9. <meta name="robots" content="index, follow">
  10. <meta name="author" content="Rodrigo Garcia, https://rmgss.net">
  11. <link rel="shortcut icon" type="image/png" href="/static/favicon.png">
  12. <title>{% block titulo %} {{ titulo }} {% endblock %}</title>
  13. <!-- Bootstrap core CSS -->
  14. <link href="/static/bootstrap-3.3.7-dist/dist/css/bootstrap.min.css" rel="stylesheet">
  15. <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
  16. <link href="/static/bootstrap/assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
  17. <!-- Custom styles for this template -->
  18. <link href="/static/clubindus.css" rel="stylesheet">
  19. </head>
  20. </head>
  21. <body>
  22. <h4> Ingeniería INDUSTRIAL - UMSA</h4>
  23. {% block navegacion %}
  24. {% endblock %}
  25. {% block content %}
  26. {% endblock %}
  27. {% block footer %}
  28. {% endblock %}
  29. </body>
  30. </html>