 72ae076ce7
			
		
	
	72ae076ce7
	
	
	
		
			
			--------- Co-authored-by: Aaron Wagener <mmmcheese158@gmail.com> Co-authored-by: qwint <qwint.42@gmail.com> Co-authored-by: black-sliver <59490463+black-sliver@users.noreply.github.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			426 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			426 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'pageWrapper.html' %}
 | |
| 
 | |
| {% block head %}
 | |
|     {% set theme_name = theme|default("grass", true) %}
 | |
|     {% include "header/"+theme_name+"Header.html" %}
 | |
|     <title>{{ title }}</title>
 | |
|     <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/markdown.css") }}" />
 | |
| {% endblock %}
 | |
| 
 | |
| {% block body %}
 | |
|     <div class="markdown">
 | |
|         {{ html_from_markdown | safe}}
 | |
|     </div>
 | |
| {%  endblock %}
 |