17 lines
378 B
Plaintext
17 lines
378 B
Plaintext
add_navbar :: (builder: *String_Builder) {
|
|
print_to_builder(builder, navbar, "OMAKASE");
|
|
}
|
|
|
|
#scope_file
|
|
|
|
navbar : string = #string DONE
|
|
<nav>
|
|
<div class="brand">%</div>
|
|
<div class="nav-actions">
|
|
<a href="index.html" class="active">Collection</a>
|
|
<a href="cookbook.html">Cookbooks</a>
|
|
<a href="atelier.html">Atelier</a>
|
|
</div>
|
|
</nav>
|
|
DONE
|