Scalino84 commited on
Commit
7eae096
·
verified ·
1 Parent(s): f3560b0

Upload /bck/templates/base.html with huggingface_hub

Browse files
Files changed (1) hide show
  1. bck/templates/base.html +37 -0
bck/templates/base.html ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <title>{% block title %}Flux Image Generator{% endblock %}</title>
7
+ <link rel="icon" href="/static/favicon.ico" type="image/x-icon">
8
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
9
+ <link rel="stylesheet" href="/static/style.css">
10
+ <style>
11
+ .custom-bg {
12
+ background-color: #f8f9fa; /* Leicht abgehobenes Weiß */
13
+ }
14
+ </style>
15
+ {% block head %}
16
+ <!-- Additional head elements can be added here -->
17
+ {% endblock %}
18
+ </head>
19
+ <body>
20
+ <div class="container">
21
+ <!-- Navigation Buttons -->
22
+ <div class="d-flex justify-content-end my-3">
23
+ <a href="/" class="btn btn-primary me-2">Home</a>
24
+ <a href="/archive" class="btn btn-secondary me-2">Archiv</a>
25
+ <a href="/backend" class="btn btn-secondary">Backend</a>
26
+ </div>
27
+
28
+ {% block content %}
29
+ <!-- Main content will be injected here -->
30
+ {% endblock %}
31
+ </div>
32
+ <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
33
+ {% block scripts %}
34
+ <!-- Additional scripts can be added here -->
35
+ {% endblock %}
36
+ </body>
37
+ </html>