last stuff

This commit is contained in:
Pim Snel 2024-04-26 19:57:42 +02:00
parent 96340352f8
commit b0de003864
2 changed files with 18 additions and 11 deletions

View File

@ -4,6 +4,18 @@ title: Home Manager - Option Search
theme: extranix-options-search
params:
release_switch_title: Home Manage Release
releases:
- name: unstable
value: master
- name: 23.11
value: release-23.11
- name: 23.05
value: release-23.05
- name: 22.11
value: release-22.11
custom_head_scripts: |
<script async src="https://umami.pimsnel.com/script.js" data-website-id="8e970d59-b517-4ba6-9b92-207e7dbdb4b1"></script>
<script async src="https://media.ethicalads.io/media/client/ethicalads.min.js"></script>
@ -24,6 +36,7 @@ params:
repo: home-manager-option-search
user: mipmip
show_count: true
show_text: false
main_menu:

View File

@ -44,7 +44,7 @@
{{with .Site.Params.github }}
<li style="margin-left:9px;padding-top:14px;">
<iframe
src="https://ghbtns.com/github-btn.html?user={{ .user}}&repo={{.repo}}&type=star&count={{.show_count}}&text=true"
src="https://ghbtns.com/github-btn.html?user={{ .user}}&repo={{.repo}}&type=star&count={{.show_count}}&text={{.show_text}}"
style="width:101px;"
frameborder="0" scrolling="0" width="150" height="20" title="GitHub"></iframe>
</li>
@ -88,19 +88,13 @@
</div>
<div class="form-group">
<label for="release">
Home Manager release
{{ .Site.Params.release_switch_title }}
</label>
<select id="releaseSelect">
<option value="master">unstable</option>
<option value="release-23.11">23.11</option>
<option value="release-23.05">23.05</option>
<option value="release-22.11">22.11</option>
{{ range .Site.Params.releases }}
<option value="{{.value}}">{{.name}}</option>
{{end}}
</select>
<!--
<label for="advcheck">
search options
<input id="advcheck" type="checkbox" data-toggle="collapse" data-target="#advanced" />
-->
</div>
</form>