aboutsummaryrefslogtreecommitdiff
path: root/bh20simplewebuploader/templates/menu.html
blob: 78082e6c9f3f80defdc1066d8bbb1709e0583696 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<section class="menu">
  <div class="topnav" id="myTopnav">
    <a href="/" class="{{ 'active' if menu=='HOME' }}">PUBSEQ</a>
    <a href="/download" class="{{ 'active' if menu=='DOWNLOAD' }}">DOWNLOAD</a>
    <a href="/upload" class="{{ 'active' if menu=='UPLOAD' }}">UPLOAD</a>
    <a href="/status" class="{{ 'active' if menu=='STATUS' }}">STATUS</a>
    <a href="/demo" class="{{ 'active' if menu=='DEMO' }}">QUERY</a>
    <a href="/export" class="{{ 'active' if menu=='EXPORT' }}">EXPORT</a>
    <a href="/blog" class="{{ 'active' if menu=='BLOG' }}">DOCS</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>