Bug fix for invalid CSS and JavaScript file references for pages

This commit is contained in:
2024-09-10 16:44:14 +01:00
parent 7a2d3d22b7
commit aac01e687f
11 changed files with 15 additions and 178 deletions

View File

@@ -5,7 +5,7 @@
{% block page_body %}
<!-- Include Stylesheet -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/sections/core.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/pages/contact.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/pages/core/contact.css') }}">
<script src="https://www.google.com/recaptcha/enterprise.js?render=6Lf8Q8cpAAAAAFAawGu4-ma60bvbEixNVTVvRzKe"></script> <!-- reCaptcha Integration -->
@@ -88,7 +88,7 @@
<!-- Include JavaScript -->
<script type="module" src="{{ url_for('static', filename='js/sections/core.js') }}"></script>
<script type="module" src="{{ url_for('static', filename='js/pages/contact.js') }}"></script>
<script type="module" src="{{ url_for('static', filename='js/pages/core/contact.js') }}"></script>
<script>
var idEmail = "#{{ model.ID_EMAIL }}";

View File

@@ -5,7 +5,7 @@
{% block page_body %}
<!-- Include Stylesheet -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/sections/core.css') }}" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/pages/home.css') }}" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/pages/core/home.css') }}" />
<!-- HTML content -->
<div>
@@ -16,7 +16,7 @@
<!-- Include JavaScript -->
<script type="module" src="{{ url_for('static', filename='js/sections/core.js') }}"></script>
<script type="module" src="{{ url_for('static', filename='js/pages/home.js') }}"></script>
<script type="module" src="{{ url_for('static', filename='js/pages/core/home.js') }}"></script>
<!--
<script>

View File

@@ -7,7 +7,7 @@
{% block page_body %}
<!-- Include Stylesheet -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/sections/core.css') }}" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/pages/services.css') }}" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/pages/core/services.css') }}" />
<!-- HTML content -->
<div class="{{ model.FLAG_CARD }}">
@@ -103,7 +103,7 @@
<!-- Include JavaScript -->
<script type="module" src="{{ url_for('static', filename='js/sections/core.js') }}"></script>
<script type="module" src="{{ url_for('static', filename='js/pages/services.js') }}"></script>
<script type="module" src="{{ url_for('static', filename='js/pages/core/services.js') }}"></script>
<!--
<script>