 37ec87fdcf
			
		
	
	37ec87fdcf
	
	
	
		
			
			- replace two separate blocks for previous and next chapter on side bar with common 'Navigation' block; - add link to table of contents to the block, as it's not that easy to find one in current layout. Change-Id: Iabb191fa94ac9bcb061db8e90d69c87525965527
		
			
				
	
	
		
			16 lines
		
	
	
		
			530 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			530 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "!layout.html" %}
 | |
| {% block sidebarrel %}
 | |
|   <h3>{{ _('Navigation')}}</h3>
 | |
|   <ul>
 | |
| {% if pagename != "index" %}
 | |
|     <li><a href="{{ pathto(master_doc) }}">{{ _('Table Of Contents') }}</a></li>
 | |
| {% endif %}
 | |
| {% if next %}
 | |
|     <li><a href="{{ next.link|e }}" title="{{ _('next chapter') }}">{{ _('Next topic') }}: {{ next.title }}</a></li>
 | |
| {% endif %}
 | |
| {% if prev %}
 | |
|     <li><a href="{{ prev.link|e }}" title="{{ _('previous chapter') }}">{{ _('Previous topic') }}: {{ prev.title }}</a></li>
 | |
| {% endif %}
 | |
|   </ul>
 | |
| {% endblock %}
 |