A theme for pelican which mimics the look of LaTeX documents
				
			 
			
		 
		
		
		
		
		
		
			Du kannst nicht mehr als 25 Themen auswählen
			Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							 | 
							- {% extends "base.html" %}
 - {% block html_lang %}{{ page.lang }}{% endblock %}
 - 
 - {% block title %}{{ SITENAME }} - {{ page.title }}{%endblock%}
 - 
 - {% block head %}
 -   {{ super() }}
 - 
 -   {% import 'translations.html' as translations with context %}
 -   {% if translations.entry_hreflang(page) %}
 -     {{ translations.entry_hreflang(page) }}
 -   {% endif %}
 - {% endblock %}
 - 
 - {% block content %}
 -     <h1>{{ page.title }}</h1>
 -     {% import 'translations.html' as translations with context %}
 -     {{ translations.translations_for(page) }}
 - 
 -     {{ page.content }}
 - 
 -     {% if page.modified %}
 -         <p>
 -         Last updated: {{ page.locale_modified }}
 -         </p>
 -     {% endif %}
 - {% endblock %}
 
 
  |