-
Notifications
You must be signed in to change notification settings - Fork 1
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
17 changed files
with
316 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,7 @@ jobs: | |
targets: ${{ matrix.target }} | ||
- name: Install cross | ||
if: ${{ matrix.use-cross }} | ||
uses: taiki-e/[email protected].2 | ||
uses: taiki-e/[email protected].7 | ||
with: | ||
tool: cross | ||
- name: Cache build artifacts | ||
|
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 |
---|---|---|
|
@@ -35,6 +35,10 @@ jobs: | |
uses: extractions/setup-just@v1 | ||
- name: Build a book | ||
run: just build-book | ||
- name: Minify a book | ||
uses: docker://tdewolff/minify:latest | ||
with: | ||
args: --exclude "build/site/_/**" -o build/ -r build/ | ||
- name: Deploy | ||
uses: peaceiris/[email protected] | ||
if: startsWith(github.ref, 'refs/tags/') | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<footer class="footer"> | ||
<p>© 2022–{{year}} Shun Sakai · <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank">CC BY 4.0</a></p> | ||
<p>Powered by <a href="https://antora.org/" target="_blank">Antora</a> & <a href="https://gitlab.com/antora/antora-ui-default" target="_blank">Antora Default UI</a></p> | ||
</footer> |
3 changes: 3 additions & 0 deletions
3
docs/book/supplemental-ui/partials/footer-content.hbs.license
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
SPDX-FileCopyrightText: 2024 Shun Sakai | ||
|
||
SPDX-License-Identifier: CC-BY-4.0 |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<header class="header"> | ||
<nav class="navbar"> | ||
<div class="navbar-brand"> | ||
<a class="navbar-item" href="{{{or site.url siteRootPath}}}">{{site.title}}</a> | ||
{{#if env.SITE_SEARCH_PROVIDER}} | ||
<div class="navbar-item search hide-for-print"> | ||
<div id="search-field" class="field"> | ||
<input id="search-input" type="text" placeholder="Search the docs"{{#if page.home}} autofocus{{/if}}> | ||
</div> | ||
</div> | ||
{{/if}} | ||
<button class="navbar-burger" aria-controls="topbar-nav" aria-expanded="false" aria-label="Toggle main menu"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</button> | ||
</div> | ||
<div id="topbar-nav" class="navbar-menu"> | ||
<div class="navbar-end"> | ||
<a class="navbar-item" href="{{{or site.url siteRootPath}}}">Home</a> | ||
<a class="navbar-item" href="https://github.com/sorairolake/abcrypt" target="_blank">Repository</a> | ||
</div> | ||
</div> | ||
</nav> | ||
</header> |
3 changes: 3 additions & 0 deletions
3
docs/book/supplemental-ui/partials/header-content.hbs.license
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
SPDX-FileCopyrightText: 2024 Shun Sakai | ||
|
||
SPDX-License-Identifier: CC-BY-4.0 |
Oops, something went wrong.