24 lines
761 B
C++
24 lines
761 B
C++
|
#include "NavigationBar.h"
|
||
|
|
||
|
constexpr auto Template = R"(
|
||
|
<nav class="bulma-navbar" role="navigation" aria-label="main navigation">
|
||
|
<div class="bulma-navbar-brand">
|
||
|
<a class="bulma-navbar-item" href="https://amass.fun">子非鱼</a>
|
||
|
<a role="button" class="bulma-navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
|
||
|
<span aria-hidden="true"></span>
|
||
|
<span aria-hidden="true"></span>
|
||
|
<span aria-hidden="true"></span>
|
||
|
<span aria-hidden="true"></span>
|
||
|
</a>
|
||
|
</div>
|
||
|
|
||
|
<div id="navbarBasicExample" class="bulma-navbar-menu">
|
||
|
<div></div>
|
||
|
<div></div>
|
||
|
</div>
|
||
|
</nav>
|
||
|
)";
|
||
|
|
||
|
NavigationBar::NavigationBar() : Wt::WTemplate(Template) {
|
||
|
}
|