-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
55 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
<#import "source_set_selector.ftl" as source_set_selector> | ||
<#macro display> | ||
<div class="navigation-wrapper" id="navigation-wrapper"> | ||
<button id="leftToggler" aria-label="Open navigation menu"><span class="icon-toggler"></span></button> | ||
<div class="library-name"> | ||
<@template_cmd name="pathToRoot"> | ||
<a href="${pathToRoot}index.html"> | ||
<@template_cmd name="projectName"> | ||
<span>${projectName}</span> | ||
</@template_cmd> | ||
</a> | ||
</@template_cmd> | ||
<div class="navigation" id="navigation"> | ||
<button id="menu-toggle" class="menu-toggle" aria-label="Open navigation menu"></button> | ||
<div class="library-name"> | ||
<@template_cmd name="pathToRoot"> | ||
<a href="${pathToRoot}index.html"> | ||
<@template_cmd name="projectName"> | ||
<span>${projectName}</span> | ||
</@template_cmd> | ||
</a> | ||
</@template_cmd> | ||
</div> | ||
<div class="library-version"> | ||
<#-- This can be handled by the versioning plugin --> | ||
<@version/> | ||
</div> | ||
<div class="pull-right d-flex"> | ||
<@source_set_selector.display/> | ||
<button id="theme-toggle-button" class="navigation-controls--theme"><span id="theme-toggle"></span></button> | ||
<div id="searchBar"></div> | ||
</div> | ||
</div> | ||
<div> | ||
<#-- This can be handled by the versioning plugin --> | ||
<@version/> | ||
</div> | ||
<div class="pull-right d-flex"> | ||
<@source_set_selector.display/> | ||
<button id="theme-toggle-button"><span id="theme-toggle"></span></button> | ||
<label for="pages-search" id="pages-search-label">Search</label> | ||
<div id="searchBar"></div> | ||
</div> | ||
</div> | ||
</#macro> |