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.
sessioncommunities.online/sites/+components/index-header.php

58 lines
1.2 KiB
PHP

<?php
/**
* \file
* Generate header for listing pages.
*/
require_once 'php/utils/site-generation.php';
?>
<header>
<div id="header-start">
<a
href="/instructions/"
target="_blank"
rel="help"
title="Help"
>How do I join a Community?</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="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>