40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
<!doctype html>
 | 
						|
<html lang="en">
 | 
						|
    <center>
 | 
						|
    <head>
 | 
						|
        {% block head %}
 | 
						|
        <meta charset="utf-8">
 | 
						|
        <link rel="stylesheet" href="{{ url_for('static', filename='stylesheet.css') }}">
 | 
						|
        <title>{% block title %}Stefan's Blog{% endblock %}</title>
 | 
						|
        <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
    <div class="menu">
 | 
						|
    <a href="{{ url_for('index') }}" style="text-decoration:none">Stefan Friese's Website</a>
 | 
						|
    </div>
 | 
						|
<hr style="width: 36ch;"/>
 | 
						|
    <div class="menu">
 | 
						|
    <a href="{{ url_for('about') }}" style="text-decoration:none">about </a>    
 | 
						|
    <a href="{{ url_for('contact') }}" style="text-decoration:none">contact </a>
 | 
						|
    <a href="{{ url_for('rss') }}" style="text-decoration:none">rss </a>
 | 
						|
    <a href="https://git.stefan.works" style="text-decoration:none">git</a>
 | 
						|
    </div>
 | 
						|
    <br><br>
 | 
						|
<p></p>
 | 
						|
    <hr/>
 | 
						|
    </center>
 | 
						|
<p></p>
 | 
						|
        {% endblock %}
 | 
						|
    </head>
 | 
						|
    <body>
 | 
						|
        <div lang="en" class="content">{% block content %}{% endblock %}</div>
 | 
						|
        <div id="footer">
 | 
						|
            {% block footer %}
 | 
						|
    <hr/>
 | 
						|
<p></p>
 | 
						|
    <center>
 | 
						|
            © Stefan Friese
 | 
						|
    </center>
 | 
						|
            {% endblock %}
 | 
						|
        </div>
 | 
						|
    </body>
 | 
						|
</html>
 |