Skip to content

Commit

Permalink
small patch to make menu work on mobile. Ultimately need to upgrade f…
Browse files Browse the repository at this point in the history
…oundation.
  • Loading branch information
benadida committed Feb 6, 2022
1 parent 8feb285 commit b7195a0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions server_ui/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,14 @@
</head>
<body>
<div class="wrapper">
<nav class="top-bar">
<nav class="top-bar" id="nav">
<ul class="title-area">
<!-- Title Area -->
<li class="name">
<h1><a href="/"><img src="/static/tinylogo.png"></a></h1>
</li>
<li class="toggle-topbar menu-icon"><a href="#"><span>menu</span></a></li>
<li class="toggle-topbar menu-icon"><a href="#" onclick="$('nav').toggleClass('expanded'); return false;"><span>Menu</span></a>
</li>
</ul>

<section class="top-bar-section">
Expand All @@ -55,7 +56,7 @@ <h1><a href="/"><img src="/static/tinylogo.png"></a></h1>
<li><a href="/">{{settings.SITE_TITLE}}</a></li>
{% if settings.MASTER_HELIOS %}
<li class="divider"></li>
<li><a href="/about">About</a></li>
<li class="active"><a href="/about">About</a></li>
<li class="divider"></li>
<li><a target="_new" href="https://github.com/benadida/helios-server">Code</a></li>
<li class="divider"></li>
Expand Down

0 comments on commit b7195a0

Please sign in to comment.