This repository has been archived on 2023-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
athena.fb-infra.uk/page-blocks/nav-menu.php
Fred Boniface 272b4786b7 0.4.2-devel (#34)
Fix issues #29, #30, #31.

Partial fix for #23 on mobile devices.  #23 still needs more work and possible a redesign of the menu.

Reviewed-on: #34
2022-10-05 20:09:37 +00:00

11 lines
345 B
PHP

<?php
echo '<div class="dropdown">';
echo ' <button onclick="myFunction()" class="dropbtn">Menu</button>';
echo ' <div id="myDropdown" class="dropdown-content">';
echo ' <a class="dropdown-first" href="/">Home</a>';
echo ' <a href="/issue.php">Report Issue</a>';
echo ' <a href="/help.php">Help</a>';
echo ' </div>';
echo '</div>';