You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
			
		
		
		
		
			
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
<?php
 | 
						|
	/**
 | 
						|
	 * \file
 | 
						|
	 * Generate header for listing pages.
 | 
						|
	 */
 | 
						|
	require_once 'php/utils/site-generation.php';
 | 
						|
?>
 | 
						|
<header>
 | 
						|
	<div id="header-start">
 | 
						|
		<a
 | 
						|
			class="icon-container"
 | 
						|
			target="_blank"
 | 
						|
			rel="help"
 | 
						|
			title="Multi-language guide to using the site."
 | 
						|
			href="/instructions/"
 | 
						|
		>Instructions</a>
 | 
						|
		<a
 | 
						|
			href="#footer"
 | 
						|
			title="About"
 | 
						|
		>More info</a>
 | 
						|
<?php if (SiteGeneration::getTargetDocumentRoute() != '/groups/all'): ?>
 | 
						|
		<noscript>
 | 
						|
			<a
 | 
						|
				href="/groups/all/"
 | 
						|
				title="Full list of Communities"
 | 
						|
			>Full list</a>
 | 
						|
		</noscript>
 | 
						|
<?php if (SiteGeneration::getTargetDocumentRoute() != '/'): ?>
 | 
						|
		<a
 | 
						|
			class="js-only"
 | 
						|
			href="/"
 | 
						|
			title="Main list of Communities"
 | 
						|
		>Main list</a>
 | 
						|
<?php endif; ?>
 | 
						|
<?php endif; ?>
 | 
						|
	</div>
 | 
						|
	<div id="header-end">
 | 
						|
		<label
 | 
						|
			for="toggle-theme-switch"
 | 
						|
			class="icon-container anchorstyle clickable enter-clicks"
 | 
						|
			title="Switch color theme"
 | 
						|
			tabindex="0"
 | 
						|
		><img
 | 
						|
			class="feather-icon dark-theme-only"
 | 
						|
			src="/assets/icons/moon.svg"
 | 
						|
			alt="🌜"
 | 
						|
		><img
 | 
						|
			class="feather-icon light-theme-only"
 | 
						|
			src="/assets/icons/sun.svg"
 | 
						|
			alt="☀️"
 | 
						|
		></label>
 | 
						|
		<a
 | 
						|
			href="/support/"
 | 
						|
			target="_blank"
 | 
						|
			title="Visit often? Show your love to sessioncommunities.online!"
 | 
						|
		><img
 | 
						|
			class="feather-icon"
 | 
						|
			src="/assets/icons/heart.svg"
 | 
						|
			alt="❤️"
 | 
						|
		></a>
 | 
						|
	</div>
 | 
						|
</header>
 |