+{% load static %} links

This commit is contained in:
jp.av.dev 2020-11-16 23:50:48 -03:00
parent cb8f8e427d
commit 17bbd9233a

View File

@ -2,9 +2,10 @@
<head> <head>
{% load static %}
<!-- Bootstrap --> <!-- Bootstrap -->
<link href="/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <link href="{% static 'ProyectoWebApp/vendor/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet">
<!-- Fonts --> <!-- Fonts -->
@ -13,7 +14,7 @@
<!-- Styles --> <!-- Styles -->
<link href="/css/gestion.css" rel="stylesheet"> <link href="{% static 'ProyectoWebApp/css/gestion.css' %}" rel="stylesheet">
</head> </head>
<body> <body>
@ -59,7 +60,7 @@
<section class="page-section clearfix"> <section class="page-section clearfix">
<div class="container"> <div class="container">
<div class="intro"> <div class="intro">
<img class="intro-img img-fluid mb-3 mb-lg-0 rounded" src="/img/principal.jpg" alt=""> <img class="intro-img img-fluid mb-3 mb-lg-0 rounded" src="{% static 'ProyectoWebApp/img/principal.jpg' %}" alt="">
<div class="intro-text left-0 text-center bg-faded p-5 rounded"> <div class="intro-text left-0 text-center bg-faded p-5 rounded">
<h2 class="section-heading mb-4" > <h2 class="section-heading mb-4" >
<span class="section-heading-upper">Puntualidad</span> <span class="section-heading-upper">Puntualidad</span>
@ -126,8 +127,8 @@
</footer> </footer>
<!-- Bootstrap --> <!-- Bootstrap -->
<script src="/vendor/jquery/jquery.min.js"></script> <script src="{% static 'ProyectoWebApp/vendor/jquery/jquery.min.js' %}"></script>
<script src="/vendor/bootstrap/js/bootstrap.bundle.min.js"></script> <script src="{% static 'ProyectoWebApp/vendor/bootstrap/js/bootstrap.bundle.min.js' %}"></script>
</body> </body>