Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix sidebar URLs for non-root pages. #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions src/jbake/templates/fragment-docs-navigation.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -54,31 +54,31 @@
<label class="menu-icon" for="docs-navigation-hamburger"><span class="fa navicon"></span></label>
<div class="navigation-items">
<ul>
<li><a ${anchorOf('manual/user-manual.html')}>Docs Home</a></li>
<li><a ${anchorOf('samples/')}>Samples</a></li>
<li><a ${anchorOf('release-notes.html')}>Release Notes</a></li>
<li><a ${anchorOf('javadoc/index.html')}>Nokee Javadoc API</a></li>
<li><a ${anchorOf('dsl/index.html')}>Nokee DSL Reference</a></li>
<li><a ${anchorOf('/manual/user-manual.html')}>Docs Home</a></li>
<li><a ${anchorOf('/samples/')}>Samples</a></li>
<li><a ${anchorOf('/release-notes.html')}>Release Notes</a></li>
<li><a ${anchorOf('/javadoc/index.html')}>Nokee Javadoc API</a></li>
<li><a ${anchorOf('/dsl/index.html')}>Nokee DSL Reference</a></li>
</ul>
<h3 id="user-manual">User Manual </h3>
<ul>
<li><a ${anchorOf('manual/getting-started.html')}>Getting Started</a></li>
<li><a ${anchorOf('manual/plugin-anatomy.html')}>Anatomy of a Nokee Plugin</a></li>
<li><a ${anchorOf('manual/building-jni-projects.html')}>Building JNI Projects</a></li>
<li><a ${anchorOf('manual/building-native-projects.html')}>Building Native Projects</a></li>
<li><a ${anchorOf('manual/developing-with-xcode-ide.html')}>Developing with Xcode IDE</a></li>
<li><a ${anchorOf('manual/gradle-plugin-development.html')}>Gradle Plugin Development</a></li>
<li><a ${anchorOf('manual/terminology.html')}>Terminology</a></li>
<li><a ${anchorOf('/manual/getting-started.html')}>Getting Started</a></li>
<li><a ${anchorOf('/manual/plugin-anatomy.html')}>Anatomy of a Nokee Plugin</a></li>
<li><a ${anchorOf('/manual/building-jni-projects.html')}>Building JNI Projects</a></li>
<li><a ${anchorOf('/manual/building-native-projects.html')}>Building Native Projects</a></li>
<li><a ${anchorOf('/manual/developing-with-xcode-ide.html')}>Developing with Xcode IDE</a></li>
<li><a ${anchorOf('/manual/gradle-plugin-development.html')}>Gradle Plugin Development</a></li>
<li><a ${anchorOf('/manual/terminology.html')}>Terminology</a></li>
</ul>
<h3 id="reference">Reference</h3>
<ul>
<li><a ${anchorOf('manual/plugin-references.html')}>Nokee Plugins</a></li>
<li><a ${anchorOf('/manual/plugin-references.html')}>Nokee Plugins</a></li>
<ul>
<li><a ${anchorOf('manual/plugin-references.html#sec:plugin-reference-native-development')}>Native Development</a></li>
<li><a ${anchorOf('manual/plugin-references.html#sec:plugin-reference-ios')}>iOS Development</a></li>
<li><a ${anchorOf('manual/plugin-references.html#sec:plugin-reference-jvm')}>JNI Development</a></li>
<li><a ${anchorOf('manual/xcode-ide-plugin.html')}>Xcode IDE</a></li>
<li><a ${anchorOf('manual/plugin-references.html#sec:plugin-reference-gradledev')}>Gradle Plugin Development</a></li>
<li><a ${anchorOf('/manual/plugin-references.html#sec:plugin-reference-native-development')}>Native Development</a></li>
<li><a ${anchorOf('/manual/plugin-references.html#sec:plugin-reference-ios')}>iOS Development</a></li>
<li><a ${anchorOf('/manual/plugin-references.html#sec:plugin-reference-jvm')}>JNI Development</a></li>
<li><a ${anchorOf('/manual/xcode-ide-plugin.html')}>Xcode IDE</a></li>
<li><a ${anchorOf('/manual/plugin-references.html#sec:plugin-reference-gradledev')}>Gradle Plugin Development</a></li>
</ul>
</ul>
</div>
Expand Down