feat: Add Open Source Compliance link to footer
Added a new link to the Open Source Compliance page in the footer navigation. Removed Unnecessary comments for cleaner code
This commit is contained in:
parent
deed082f10
commit
f37ba2e3f7
1 changed files with 1 additions and 8 deletions
|
|
@ -11,7 +11,6 @@
|
||||||
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='images/favicon.ico') }}">
|
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='images/favicon.ico') }}">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- Header -->
|
|
||||||
<header class="main-header">
|
<header class="main-header">
|
||||||
<div class="header-container">
|
<div class="header-container">
|
||||||
<div class="header-left">
|
<div class="header-left">
|
||||||
|
|
@ -72,7 +71,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Mobile Navigation -->
|
|
||||||
<div class="mobile-nav">
|
<div class="mobile-nav">
|
||||||
<ul class="mobile-nav-menu">
|
<ul class="mobile-nav-menu">
|
||||||
<li><a href="{{ url_for('main.index') }}" class="mobile-nav-link">Home</a></li>
|
<li><a href="{{ url_for('main.index') }}" class="mobile-nav-link">Home</a></li>
|
||||||
|
|
@ -83,7 +81,6 @@
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<!-- Flash Messages -->
|
|
||||||
{% with messages = get_flashed_messages(with_categories=true) %}
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
||||||
{% if messages %}
|
{% if messages %}
|
||||||
<div class="flash-messages">
|
<div class="flash-messages">
|
||||||
|
|
@ -102,15 +99,12 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
|
|
||||||
<!-- Main Content -->
|
|
||||||
<main class="main-content">
|
<main class="main-content">
|
||||||
{% block content %}{% endblock %}
|
{% block content %}{% endblock %}
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<!-- Footer -->
|
|
||||||
<footer class="main-footer">
|
<footer class="main-footer">
|
||||||
<div class="footer-container">
|
<div class="footer-container">
|
||||||
<!-- Footer Top -->
|
|
||||||
<div class="footer-top">
|
<div class="footer-top">
|
||||||
<div class="footer-section footer-brand">
|
<div class="footer-section footer-brand">
|
||||||
<div class="footer-logo">
|
<div class="footer-logo">
|
||||||
|
|
@ -148,6 +142,7 @@
|
||||||
<li><a href="/about">About Us</a></li>
|
<li><a href="/about">About Us</a></li>
|
||||||
<li><a href="/privacy-policy">Privacy Policy</a></li>
|
<li><a href="/privacy-policy">Privacy Policy</a></li>
|
||||||
<li><a href="/terms-of-service">Terms of Service</a></li>
|
<li><a href="/terms-of-service">Terms of Service</a></li>
|
||||||
|
<li><a href="/oss-compliance">Open Source Compliance</a></li>
|
||||||
<li><a href="/careers">Careers</a></li>
|
<li><a href="/careers">Careers</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -188,7 +183,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Footer Bottom -->
|
|
||||||
<div class="footer-bottom">
|
<div class="footer-bottom">
|
||||||
<div class="footer-bottom-content">
|
<div class="footer-bottom-content">
|
||||||
<div class="copyright">
|
<div class="copyright">
|
||||||
|
|
@ -210,7 +204,6 @@
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<!-- JavaScript for mobile menu -->
|
|
||||||
<script>
|
<script>
|
||||||
document.addEventListener('DOMContentLoaded', function() {
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
const mobileToggle = document.querySelector('.mobile-menu-toggle');
|
const mobileToggle = document.querySelector('.mobile-menu-toggle');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue