40 lines
		
	
	
		
			No EOL
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			No EOL
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% from 'bootstrap/utils.html' import render_messages %}
 | |
| 
 | |
| <!doctype html>
 | |
| <html lang="en">
 | |
|     <head>
 | |
|         {% block head %}
 | |
|             <meta charset="utf-8">
 | |
|             <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
 | |
|             {% block styles %}
 | |
|                 {{ bootstrap.load_css() }}
 | |
|                 <link rel="stylesheet" href="{{url_for('static', filename='theme.css')}}">
 | |
|             {% endblock %}
 | |
|             <link rel="shortcut icon" type="image/svg" href="{{url_for('static',filename='icon.svg')}}"/>
 | |
|             <title>MediaDash</title>
 | |
|         {% endblock %}
 | |
|     </head>
 | |
|     <body>
 | |
|         {% block navbar %}
 | |
|         <nav class="navbar sticky-top navbar-expand-lg navbar-dark" style="background-color: #222;">
 | |
|             {% if request.path!=url_for("login") %}
 | |
|                 <img src="{{url_for('static',filename='icon.svg')}}" width=40 height=40/>
 | |
|             {% endif %}
 | |
|             <div class="collapse navbar-collapse" id="navbar_main">
 | |
|                 {{nav.left_nav.render(renderer='bootstrap4')}}
 | |
|                 {{nav.right_nav.render(renderer='bootstrap4')}}
 | |
|             </div>
 | |
|         </nav>
 | |
|         {% endblock %}
 | |
|         {% block content %}
 | |
|         <div class={{"container-fluid" if fluid else "container"}}>
 | |
|             {{render_messages()}}
 | |
|             {% block app_content %}{% endblock %}
 | |
|         </div>
 | |
|         {% endblock %}
 | |
| 
 | |
|         {% block scripts %}
 | |
|             {{ bootstrap.load_js(with_popper=False) }}
 | |
|         {% endblock %}
 | |
|     </body>
 | |
| </html> |