bhd82 commited on
Commit
4fde51d
·
verified ·
1 Parent(s): 4d159bf

Delete templates/base.html

Browse files
Files changed (1) hide show
  1. templates/base.html +0 -112
templates/base.html DELETED
@@ -1,112 +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
- <link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
22
-
23
- <!-- Font Awesome -->
24
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
25
-
26
- {% block extra_css %}{% endblock %}
27
- </head>
28
- <body>
29
- <header>
30
- <nav class="navbar">
31
- <div class="container">
32
- <a href="{{ url_for('index') }}" class="logo">
33
- <img src="{{ url_for('static', filename='images/logo.svg') }}" alt="SkinAI Logo">
34
- <span>SkinAI</span>
35
- </a>
36
-
37
- <button class="mobile-menu-toggle" aria-label="Toggle menu">
38
- <span class="bar"></span>
39
- <span class="bar"></span>
40
- <span class="bar"></span>
41
- </button>
42
-
43
- <div class="nav-links">
44
- <a href="{{ url_for('index') }}" class="{% if request.path == url_for('index') %}active{% endif %}">Home</a>
45
- <a href="{{ url_for('detect') }}" class="{% if request.path == url_for('detect') %}active{% endif %}">Detect</a>
46
- <a href="{{ url_for('about') }}" class="{% if request.path == url_for('about') %}active{% endif %}">About</a>
47
- <a href="{{ url_for('faq') }}" class="{% if request.path == url_for('faq') %}active{% endif %}">FAQ</a>
48
- </div>
49
- </div>
50
- </nav>
51
- </header>
52
-
53
- <main>
54
- {% block content %}{% endblock %}
55
- </main>
56
-
57
- <footer>
58
- <div class="container">
59
- <div class="footer-grid">
60
- <div class="footer-col">
61
- <h3>SkinAI</h3>
62
- <p>Advanced AI-powered skin lesion analysis for early detection of skin cancer.</p>
63
- <div class="social-links">
64
- <a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
65
- <a href="#" aria-label="Facebook"><i class="fab fa-facebook-f"></i></a>
66
- <a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
67
- <a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
68
- </div>
69
- </div>
70
-
71
- <div class="footer-col">
72
- <h3>Quick Links</h3>
73
- <ul>
74
- <li><a href="{{ url_for('index') }}">Home</a></li>
75
- <li><a href="{{ url_for('detect') }}">Detect</a></li>
76
- <li><a href="{{ url_for('about') }}">About</a></li>
77
- <li><a href="{{ url_for('faq') }}">FAQ</a></li>
78
- </ul>
79
- </div>
80
-
81
- <div class="footer-col">
82
- <h3>Legal</h3>
83
- <ul>
84
- <li><a href="{{ url_for('privacy') }}">Privacy Policy</a></li>
85
- <li><a href="{{ url_for('terms') }}">Terms of Service</a></li>
86
- <li><a href="#">Cookie Policy</a></li>
87
- </ul>
88
- </div>
89
-
90
- <div class="footer-col">
91
- <h3>Important Notice</h3>
92
- <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>
93
- </div>
94
- </div>
95
-
96
- <div class="footer-bottom">
97
- <p>&copy; 2023 SkinAI. All rights reserved.</p>
98
- </div>
99
- </div>
100
- </footer>
101
-
102
- <!-- Core JavaScript -->
103
- <script src="{{ url_for('static', filename='js/main.js') }}"></script>
104
-
105
- {% block extra_js %}{% endblock %}
106
-
107
- <!-- Analytics (replace with your own) -->
108
- <script async defer>
109
- // Google Analytics or other analytics code
110
- </script>
111
- </body>
112
- </html>