32 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <title>{{ site.title }}</title>
 | |
|     {% feed_meta %}
 | |
|     <link rel="stylesheet" href='{{ "/assets/css/post.css" | relative_url }}'>
 | |
|     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.1/css/materialize.min.css" integrity="sha256-qj3p6P1fJIV+Ndv7RW1ovZI2UhOuboj9GcODzcNFIN8=" crossorigin="anonymous" />
 | |
|     <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
 | |
|     <link rel="stylesheet" href='{{ "/assets/css/fonts/fontawesome/all.min.css" | relative_url }}'>
 | |
| </head>
 | |
| <body>
 | |
| {% include header.html %}
 | |
| <main class="container">
 | |
|     <div id="meta" class="center">
 | |
|         <i>von {{ page.author }}</i>
 | |
|         <br>
 | |
|         <i>am {{ page.date | date: "%d.%m.%y" }}</i>
 | |
|     </div>
 | |
|     <h2 id="title">{{ page.title }}</h2>
 | |
|     <div id="content">
 | |
|         {{ content }}
 | |
|     </div>
 | |
| </main>
 | |
| {% include footer.html %}
 | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
 | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.1/js/materialize.min.js" integrity="sha256-SrBfGi+Zp2LhAvy9M1bWOCXztRU9Ztztxmu5BcYPcPE=" crossorigin="anonymous"></script>
 | |
| <script src="{{ '/assets/js/post.js' | relative_url }}"></script>
 | |
| </body>
 | |
| </html> |