feat: add favicon, one stylesheet, base.html
This commit is contained in:
		
							parent
							
								
									2e9bda85c7
								
							
						
					
					
						commit
						7a31bb7e3a
					
				
					 7 changed files with 1166 additions and 671 deletions
				
			
		
							
								
								
									
										69
									
								
								templates/base.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										69
									
								
								templates/base.html
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,69 @@ | |||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
|   <meta charset="UTF-8" /> | ||||
|   <meta | ||||
|     name="viewport" | ||||
|     content="width=device-width, initial-scale=1, viewport-fit=cover" | ||||
|   /> | ||||
|   <title>{% block title %}RideAware{% endblock %}</title> | ||||
| 
 | ||||
|   <link | ||||
|     href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" | ||||
|     rel="stylesheet" | ||||
|   /> | ||||
|   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||||
|   <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet"> | ||||
|   <link | ||||
|     rel="stylesheet" | ||||
|     href="{{ url_for('static', filename='css/styles.css') }}" | ||||
|   /> | ||||
| 
 | ||||
|   <link | ||||
|     rel="alternate icon" | ||||
|     type="image/png" | ||||
|     sizes="32x32" | ||||
|     href="{{ url_for('static', filename='assets/32x32.png') }}" | ||||
|   /> | ||||
|   <link | ||||
|     rel="apple-touch-icon" | ||||
|     sizes="180x180" | ||||
|     href="{{ url_for('static', filename='assets/apple-touch-icon.png') }}" | ||||
|   /> | ||||
|   <link | ||||
|     rel="manifest" | ||||
|     href="{{ url_for('static', filename='assets/site.webmanifest') }}" | ||||
|   /> | ||||
|   <meta | ||||
|     name="theme-color" | ||||
|     content="#0f172a" | ||||
|   /> | ||||
| 
 | ||||
|   {% block extra_head %}{% endblock %} | ||||
| </head> | ||||
| <body> | ||||
|   <nav class="navbar"> | ||||
|     <div class="nav-container"> | ||||
|       <a href="/" class="logo">Ride<span class="logo-accent">Aware</span></a> | ||||
|       <ul class="nav-links"> | ||||
|         <li><a href="#features">Features</a></li> | ||||
|         <li><a href="/newsletters">Newsletters</a></li> | ||||
|       </ul> | ||||
|     </div> | ||||
|   </nav> | ||||
| 
 | ||||
|   {% block content %}{% endblock %} | ||||
| 
 | ||||
|   <footer class="footer"> | ||||
|     <p>© 2025 RideAware. All rights reserved.</p> | ||||
|   </footer> | ||||
| 
 | ||||
|   <script | ||||
|     defer | ||||
|     src="https://cdn.statically.io/gl/rideaware/landing/06d19988c7df53636277f945f9ed853bda76471b/static/js/main.min.js" | ||||
|     crossorigin="anonymous" | ||||
|   ></script> | ||||
| 
 | ||||
|   {% block extra_scripts %}{% endblock %} | ||||
| </body> | ||||
| </html> | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Cipher Vance
						Cipher Vance