30 lines
		
	
	
		
			860 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			860 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "fellchensammlung/base_generic.html" %}
 | 
						|
{% load i18n %}
 | 
						|
{% load custom_tags %}
 | 
						|
 | 
						|
{% block title %}<title>{% translate "Über uns und Regeln" %}</title>{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    {% if about_us %}
 | 
						|
        <h1>{{ about_us.title }}</h1>
 | 
						|
        {{ about_us.content | render_markdown }}
 | 
						|
    {% endif %}
 | 
						|
 | 
						|
    <h1>{% translate "Regeln" %}</h1>
 | 
						|
    {% include "fellchensammlung/lists/list-rules.html" %}
 | 
						|
 | 
						|
    {% if privacy_statement %}
 | 
						|
        <h1>{{ privacy_statement.title }}</h1>
 | 
						|
        {{ privacy_statement.content | render_markdown }}
 | 
						|
    {% endif %}
 | 
						|
 | 
						|
    {% if terms_of_service %}
 | 
						|
        <h1>{{ terms_of_service.title }}</h1>
 | 
						|
        {{ terms_of_service.content | render_markdown }}
 | 
						|
    {% endif %}
 | 
						|
 | 
						|
    {% if imprint %}
 | 
						|
        <h1>{{ imprint.title }}</h1>
 | 
						|
        {{ imprint.content | render_markdown }}
 | 
						|
    {% endif %}
 | 
						|
{% endblock %} |