search.html 1015 B

1234567891011121314151617181920212223242526272829
  1. {{- define "main" }}
  2. <header class="page-header">
  3. <h1>{{- (printf "%s&nbsp;" .Title ) | htmlUnescape -}}
  4. <svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none"
  5. stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  6. <circle cx="11" cy="11" r="8"></circle>
  7. <line x1="21" y1="21" x2="16.65" y2="16.65"></line>
  8. </svg>
  9. </h1>
  10. {{- if .Description }}
  11. <div class="post-description">
  12. {{ .Description }}
  13. </div>
  14. {{- end }}
  15. {{- if not (.Param "hideMeta") }}
  16. <div class="post-meta">
  17. {{- partial "translation_list.html" . -}}
  18. </div>
  19. {{- end }}
  20. </header>
  21. <div id="searchbox">
  22. <input id="searchInput" autofocus placeholder="{{ .Params.placeholder | default (printf "%s ↵" .Title) }}"
  23. aria-label="search" type="search" autocomplete="off">
  24. <ul id="searchResults" aria-label="search results"></ul>
  25. </div>
  26. {{- end }}{{/* end main */}}