Advertisement
cardel

Untitled

May 20th, 2016
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.36 KB | None | 0 0
  1. {% load staticfiles %}
  2. <!DOCTYPE html>
  3. <html lang="en">
  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.     <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  9.     <meta name="description" content="">
  10.     <meta name="author" content="">
  11.    {# <link rel="icon" href="../../favicon.ico">#}
  12.    
  13.     <link rel="stylesheet" href="{% static 'plantilla/bootstrap/css/bootstrap.css' %}">
  14.     <!-- Font Awesome -->
  15.     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
  16.     <!-- Ionicons -->
  17.     <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
  18.     <!-- Theme style -->
  19.     <link rel="stylesheet" href="{% static 'plantilla/dist/css/AdminLTE.min.css' %}">
  20.     <!-- AdminLTE Skins. Choose a skin from the css/skins
  21.         folder instead of downloading all of them to reduce the load. -->
  22.     <link rel="stylesheet" href="{% static 'plantilla/dist/css/skins/_all-skins.min.css' %}">
  23.     <!-- iCheck -->
  24.     <link rel="stylesheet" href="{% static 'plantilla/plugins/iCheck/flat/blue.css' %}">
  25.     <!-- Morris chart -->
  26.     <link rel="stylesheet" href="{% static 'plantilla/plugins/morris/morris.css' %}">
  27.     <!-- jvectormap -->
  28.     <link rel="stylesheet" href="{% static 'plantilla/plugins/jvectormap/jquery-jvectormap-1.2.2.css' %}">
  29.     <!-- Date Picker -->
  30.     <link rel="stylesheet" href="{% static 'plantilla/plugins/datepicker/datepicker3.css' %}">
  31.     <!-- Daterange picker -->
  32.     <link rel="stylesheet" href="{% static 'plantilla/plugins/daterangepicker/daterangepicker-bs3.css' %}">
  33.     <!-- bootstrap wysihtml5 - text editor -->
  34.     <link rel="stylesheet" href="{% static 'plantilla/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css' %}">
  35.     <link rel="stylesheet" href="{% static 'css/estilos_concesionario.css' %}">
  36.     <title>{% block title%}{% endblock%}</title>
  37. {% include "includes/header.html" %}
  38. {% include "includes/navbar.html" %}
  39.  
  40. </head>
  41.  
  42.  
  43.  
  44. <body class="hold-transition skin-blue sidebar-mini">
  45.  
  46.  
  47.  
  48. {# jquery #}
  49. <script src="{%static 'js/jquery-2.1.4.min.js'%}"></script>
  50.  
  51. <!-- jQuery UI 1.11.4 -->
  52. <script src="{%static 'js/jquery-ui-1.11.4/jquery-ui.min.js' %}"></script>
  53.  
  54. {# Bootstrap #}
  55. <script src="{%static 'js/bootstrap.min.js'%}"></script>
  56. <link href="{%static 'css/bootstrap.min.css'%}" rel="stylesheet" />
  57.  
  58.  
  59.  <script src="{% static 'js/moment.min.js' %}"></script>
  60.  
  61.  <div class="wrapper">
  62.  
  63.         {% block content %}{% endblock %}
  64.        
  65.         {% include "includes/footer.html" %}
  66.     </div>
  67.    
  68.  
  69.    
  70. <!-- Morris.js charts -->
  71.     <script src="{% static 'js/raphael.min.js' %}"></script>
  72.     <script src="{% static 'plantilla/plugins/morris/morris.min.js' %}"></script>
  73.     <!-- Sparkline -->
  74.     <script src="{% static 'plantilla/plugins/sparkline/jquery.sparkline.min.js' %}"></script>
  75.     <!-- jvectormap -->
  76.     <script src="{% static 'plantilla/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js' %}"></script>
  77.     <script src="{% static 'plantilla/plugins/jvectormap/jquery-jvectormap-world-mill-en.js' %}"></script>
  78.     <!-- jQuery Knob Chart -->
  79.     <script src="{% static 'plantilla/plugins/knob/jquery.knob.js' %}"></script>
  80.     <!-- daterangepicker -->
  81.    
  82.     <script src="{% static 'plantilla/plugins/daterangepicker/daterangepicker.js' %}"></script>
  83.     <!-- datepicker -->
  84.     <script src="{% static 'plantilla/plugins/datepicker/bootstrap-datepicker.js' %}"></script>
  85.     <!-- Bootstrap WYSIHTML5 -->
  86.     <script src="{% static 'plantilla/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js' %}"></script>
  87.     <!-- Slimscroll -->
  88.     <script src="{% static 'plantilla/plugins/slimScroll/jquery.slimscroll.min.js' %}"></script>
  89.     <!-- FastClick -->
  90.     <script src="{% static 'plantilla/plugins/fastclick/fastclick.min.js' %}"></script>
  91.     <!-- AdminLTE App -->
  92.     <script src="{% static 'plantilla/dist/js/app.min.js' %}"></script>
  93.     <!-- AdminLTE dashboard demo (This is only for demo purposes) -->
  94.     <script src="{% static 'plantilla/dist/js/pages/dashboard.js' %}"></script>
  95.     <!-- AdminLTE for demo purposes -->
  96.     <script src="{% static 'plantilla/dist/js/demo.js' %}"></script>
  97.  
  98.  
  99. </body>
  100.  
  101.  
  102. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement