25 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php /** @var ConfigModel $config */ ?>
 | |
| <?php /* https://www.w3schools.com/howto/howto_css_dropdown.asp */ ?>
 | |
|         <nav aria-label="Main navigation">
 | |
|             <a tabindex="0" href="<?= $config->basePath ?>">home</a>
 | |
|             <details>
 | |
|                 <summary aria-haspopup="true">feeds</summary>
 | |
|                 <div class="dropdown-items">
 | |
|                     <a tabindex="0" href="<?= $config->basePath ?>feed/rss">rss</a>
 | |
|                     <a tabindex="0" href="<?= $config->basePath ?>feed/atom">atom</a>
 | |
|                 </div>
 | |
|             </details>
 | |
| <?php if (!Session::isLoggedIn()): ?>
 | |
|             <a tabindex="0" href="<?= $config->basePath ?>login">login</a>
 | |
| <?php else: ?>
 | |
|             <details>
 | |
|                 <summary aria-haspopup="true">admin</summary>
 | |
|                 <div class="dropdown-items">
 | |
|                     <a tabindex="0" href="<?= $config->basePath ?>admin">settings</a>
 | |
|                     <a tabindex="0" href="<?= $config->basePath ?>admin/css">css</a>
 | |
|                     <a tabindex="0" href="<?= $config->basePath ?>admin/emoji">emoji</a>
 | |
|                 </div>
 | |
|             </details>
 | |
|             <a tabindex="0" href="<?= $config->basePath ?>logout">logout</a>
 | |
| <?php endif; ?>
 | |
|         </nav>
 |