-
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.
move title and version info above search
- Loading branch information
1 parent
37e1f2b
commit ea177f5
Showing
5 changed files
with
49 additions
and
75 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 |
---|---|---|
|
@@ -7,5 +7,5 @@ | |
"paperSize": "a5", | ||
"embedFonts": true | ||
}, | ||
"version": "1.1.1" | ||
"version": "1.1.2" | ||
} |
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,33 @@ | ||
{% extends "../../../node_modules/@honkit/honkit-plugin-theme-default/_layouts/website/page.html" %} | ||
|
||
{% block book_sidebar %} | ||
<div class="title"> | ||
<h2>Engineering Culture at celebrate company</h2> | ||
<small><a href="{{ ["closing/CHANGELOG.html#", config.version] | join | resolveFile }}">Version {{ config.version }}</a></small> | ||
</div> | ||
<div id="book-search-input" role="search"> | ||
<input type="text" placeholder="{{ 'SEARCH_PLACEHOLDER'|t }}" /> | ||
</div> | ||
{{ super() }} | ||
{% endblock %} | ||
|
||
{% block search_results %} | ||
<div id="book-search-results"> | ||
<div class="search-noresults"> | ||
{{ super() }} | ||
</div> | ||
<div class="search-results"> | ||
<div class="has-results"> | ||
{% block search_has_results %} | ||
<h1 class="search-results-title">{{ 'SEARCH_RESULTS_TITLE'|t|safe }}</h1> | ||
<ul class="search-results-list"></ul> | ||
{% endblock %} | ||
</div> | ||
<div class="no-results"> | ||
{% block search_no_results %} | ||
<h1 class="search-results-title">{{ 'SEARCH_NO_RESULTS_TITLE'|t|safe }}</h1> | ||
{% endblock %} | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file was deleted.
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