aboutsummaryrefslogtreecommitdiff
path: root/bh20simplewebuploader/templates/menu.html
blob: 6f97e1906430d8eaf6b34ca9c4ed80f0f3fcbc8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<section class="menu">
  <div class="topnav" id="myTopnav">
    <a href="/" class="{{ 'active' if menu=='HOME' }}">COVID-19</a>
    <a href="/download" class="{{ 'active' if menu=='DOWNLOAD' }}">DOWNLOAD</a>
    <a href="/demo" class="{{ 'active' if menu=='DEMO' }}">DEMO</a>
    <a href="/blog" class="{{ 'active' if menu=='BLOG' }}">BLOG</a>
    <a href="/about" class="{{ 'active' if menu=='ABOUT' }}">ABOUT</a>
    <a href="javascript:void(0);" class="icon" onclick="myFunction()">
      <i class="fa fa-bars"></i>
    </a>
  </div>
</section>