Fix(UI): Remove most comments from page template files.

This commit is contained in:
2025-02-01 09:41:49 +00:00
parent 0f289a01ec
commit 5a7d5417d0
12 changed files with 1 additions and 163 deletions

View File

@@ -5,13 +5,8 @@
{% block title %}{{ model.title }}{% endblock %}
{% 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/core/services.css') }}" />
-->
<link rel="stylesheet" href="{{ url_for('static', filename='dist/css/core_services.bundle.css') }}">
<!-- HTML content -->
<div class="{{ model.FLAG_CARD }}">
<div class="{{ model.FLAG_CONTAINER }} {{ model.FLAG_COLUMN }}">
<h1>Services</h1>
@@ -102,19 +97,4 @@
<li>Transparent pricing structure with no hidden fees</li>
</ul>
</div>
<!-- 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/core/services.js') }}"></script>
-->
<!--
<script>
var hashPageCurrent = "{{ model.HASH_PAGE_SERVICES }}";
$(document).ready(function() {
hookupPageServices();
});
</script>
-->
{% endblock %}