bhd82 commited on
Commit
9886e78
·
verified ·
1 Parent(s): 4ec6889

Delete base.html

Browse files
Files changed (1) hide show
  1. base.html +0 -122
base.html DELETED
@@ -1,122 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <meta name="description" content="SkinAI - Advanced AI-powered skin lesion analysis for early detection of skin cancer">
7
- <meta name="keywords" content="skin cancer, melanoma, AI detection, dermatology, machine learning">
8
- <meta name="author" content="SkinAI Team">
9
-
10
- <title>{% block title %}SkinAI - AI-Powered Skin Cancer Detection{% endblock %}</title>
11
-
12
- <!-- Favicon -->
13
- <link rel="shortcut icon" href="{{ url_for('static', filename='images/favicon.ico') }}" type="image/x-icon">
14
-
15
- <!-- Fonts -->
16
- <link rel="preconnect" href="https://fonts.googleapis.com">
17
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
18
- <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
19
-
20
- <!-- CSS -->
21
-
22
- <link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
23
- {% if request.endpoint == 'about' %}
24
- <link rel="stylesheet" href="{{ url_for('static', filename='css/about.css') }}">
25
- {% elif request.endpoint == 'faq' %}
26
- <link rel="stylesheet" href="{{ url_for('static', filename='css/faq.css') }}">
27
- {% elif request.endpoint == 'contact' %}
28
- <link rel="stylesheet" href="{{ url_for('static', filename='css/contact.css') }}">
29
- {% elif request.endpoint in ['terms', 'privacy'] %}
30
- <link rel="stylesheet" href="{{ url_for('static', filename='css/legal.css') }}">
31
- {% endif %}
32
-
33
- <!-- Font Awesome -->
34
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
35
-
36
- {% block extra_css %}{% endblock %}
37
- </head>
38
- <body>
39
- <header>
40
- <nav class="navbar">
41
- <div class="container">
42
- <a href="{{ url_for('index') }}" class="logo">
43
- <img src="{{ url_for('static', filename='images/logo.svg') }}" alt="SkinAI Logo">
44
- <span>SkinAI</span>
45
- </a>
46
-
47
- <button class="mobile-menu-toggle" aria-label="Toggle menu">
48
- <span class="bar"></span>
49
- <span class="bar"></span>
50
- <span class="bar"></span>
51
- </button>
52
-
53
- <div class="nav-links">
54
- <a href="{{ url_for('index') }}" class="{% if request.path == url_for('index') %}active{% endif %}">Home</a>
55
- <a href="{{ url_for('detect') }}" class="{% if request.path == url_for('detect') %}active{% endif %}">Detect</a>
56
- <a href="{{ url_for('about') }}" class="{% if request.path == url_for('about') %}active{% endif %}">About</a>
57
- <a href="{{ url_for('faq') }}" class="{% if request.path == url_for('faq') %}active{% endif %}">FAQ</a>
58
- </div>
59
- </div>
60
- </nav>
61
- </header>
62
-
63
- <main>
64
- {% block content %}{% endblock %}
65
- </main>
66
-
67
- <footer>
68
- <div class="container">
69
- <div class="footer-grid">
70
- <div class="footer-col">
71
- <h3>SkinAI</h3>
72
- <p>Advanced AI-powered skin lesion analysis for early detection of skin cancer.</p>
73
- <div class="social-links">
74
- <a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
75
- <a href="#" aria-label="Facebook"><i class="fab fa-facebook-f"></i></a>
76
- <a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
77
- <a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
78
- </div>
79
- </div>
80
-
81
- <div class="footer-col">
82
- <h3>Quick Links</h3>
83
- <ul>
84
- <li><a href="{{ url_for('index') }}">Home</a></li>
85
- <li><a href="{{ url_for('detect') }}">Detect</a></li>
86
- <li><a href="{{ url_for('about') }}">About</a></li>
87
- <li><a href="{{ url_for('faq') }}">FAQ</a></li>
88
- </ul>
89
- </div>
90
-
91
- <div class="footer-col">
92
- <h3>Legal</h3>
93
- <ul>
94
- <li><a href="{{ url_for('privacy') }}">Privacy Policy</a></li>
95
- <li><a href="{{ url_for('terms') }}">Terms of Service</a></li>
96
- <li><a href="#">Cookie Policy</a></li>
97
- </ul>
98
- </div>
99
-
100
- <div class="footer-col">
101
- <h3>Important Notice</h3>
102
- <p>This tool is for educational purposes only and is not a substitute for professional medical advice. Always consult with a healthcare professional for medical concerns.</p>
103
- </div>
104
- </div>
105
-
106
- <div class="footer-bottom">
107
- <p>&copy; 2025 SkinAI. All rights reserved.</p>
108
- </div>
109
- </div>
110
- </footer>
111
-
112
- <!-- Core JavaScript -->
113
- <script src="{{ url_for('static', filename='js/main.js') }}"></script>
114
-
115
- {% block extra_js %}{% endblock %}
116
-
117
- <!-- Analytics (replace with your own) -->
118
- <script async defer>
119
- // Google Analytics or other analytics code
120
- </script>
121
- </body>
122
- </html>