18 lines
		
	
	
		
			428 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			428 B
		
	
	
	
		
			HTML
		
	
	
	
{% extends "!layout.html" %}
 | 
						|
 | 
						|
{% block document %}
 | 
						|
 | 
						|
{% if current_version and current_version.name == "develop" %}
 | 
						|
<div class="admonition warning">
 | 
						|
  <p class="admonition-title">Warning</p>
 | 
						|
  <p>
 | 
						|
    This documentation only applies for the development version of Funkwhale!
 | 
						|
    <a href="{{ vpathto('stable') }}">Visit the stable documentation for the latest release.</a>
 | 
						|
  </p>
 | 
						|
</div>
 | 
						|
{% endif %}
 | 
						|
 | 
						|
{{ super() }}
 | 
						|
 | 
						|
{% endblock %}
 |