diff options
author | pdp8 <pdp8@pdp8.info> | 2022-08-21 15:09:38 +0200 |
---|---|---|
committer | pdp8 <pdp8@pdp8.info> | 2022-08-21 15:09:38 +0200 |
commit | ec4c08d91081de6d9c7404742c70a94cea250dce (patch) | |
tree | d8279f6196ec2f4d94d86aa6138a568989367fd6 /nav.html | |
parent | 5cc948cbe8f1e36c61f4e224a5ad74a8a975dbfd (diff) |
html snippets
Diffstat (limited to 'nav.html')
-rw-r--r-- | nav.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/nav.html b/nav.html new file mode 100644 index 0000000..911a8c9 --- /dev/null +++ b/nav.html @@ -0,0 +1,13 @@ + <nav> + <img src='/pdp8.png' id='logo' alt=''> + <a class='item{{#audio}} current{{/audio}}' href="/audio.html">audio</a> + <a class='item{{#images}} current{{/images}}' href="/images.html">images</a> + <a class='item{{#video}} current{{/video}}' href="/video.html">video</a> + <a class='item{{#code}} current{{/code}}' href="/code.html">code</a> + <a class='item{{#news}} current{{/news}}' href="/index.html">news</a> + <a class='item{{#about}} current{{/about}}' href="/about.html">about</a> + <a class='item{{#newsletter}} current{{/newsletter}}' href="/newsletter.html">newsletter</a> + <a id="menu" href="#" onclick=show_vertical_menu()> + <i class="fa fa-bars" aria-hidden="true"></i> + </a> + </nav> |