You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							35 lines
						
					
					
						
							999 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							35 lines
						
					
					
						
							999 B
						
					
					
				
								<!DOCTYPE html>
							 | 
						|
								<html lang="en">
							 | 
						|
								<head>
							 | 
						|
								    <meta charset="UTF-8">
							 | 
						|
								    <meta name="viewport" content="width=device-width, initial-scale=1.0">
							 | 
						|
								    <title>{% block title %}{% endblock %}</title>
							 | 
						|
									<link rel="stylesheet" href="{{ url_for('static', filename='assets/styles.css') }}">
							 | 
						|
									<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='assets/images/favicon.ico') }}">
							 | 
						|
								<body>
							 | 
						|
									<div class='main-cont'>
							 | 
						|
										<div class='nav-cont'>
							 | 
						|
											<div class='header-title'>
							 | 
						|
												<a href="/">CØNCEPTNULL</a>
							 | 
						|
											</div>
							 | 
						|
											<div class='nav-element-cont'>
							 | 
						|
												{% for key, element in nav_elements.items() %}
							 | 
						|
												<div class='nav-element'><a href="{{ url_for('page_content', title=element.title) }}">
							 | 
						|
													{% if element.title == 'Concept Null' %}
							 | 
						|
														About
							 | 
						|
													{% else %}
							 | 
						|
														{{ element.title }}
							 | 
						|
													{% endif %}
							 | 
						|
												</a><div class='spinning-star'>🞱</div></div>
							 | 
						|
												{% endfor %}
							 | 
						|
											</div>
							 | 
						|
											
							 | 
						|
										</div>
							 | 
						|
										<div class="content">
							 | 
						|
										{% block content %}
							 | 
						|
										{% endblock %}
							 | 
						|
										</div>
							 | 
						|
									</div>
							 | 
						|
								</body>
							 | 
						|
								
							 | 
						|
								</html>
							 | 
						|
								
							 |