v / examples / veb_fullstack / templates / header_component.html
15 lines · 15 sloc · 524 bytes · b474aa0faf8d055aaced80ed0687ac354d0864a0
Raw
1<nav>
2 <div class="nav-wrapper">
3 <a href="javascript:window.history.back();" class="left">
4 <i class="material-icons">arrow_back_ios_new</i>
5 </a>
6 <a href="/">
7 <img src="src/assets/veasel.png" alt="logo" style="max-height: 100%" />
8 </a>
9 <ul id="nav-mobile" class="right">
10 <li><a href="https://github.com/vlang/v">github</a></li>
11 <li><a href="https://vlang.io/">website</a></li>
12 <li><a href="https://github.com/sponsors/medvednikov">support</a></li>
13 </ul>
14 </div>
15</nav>
16