mirror of
				https://github.com/Theodor-Springmann-Stiftung/musenalm.git
				synced 2025-10-31 10:15:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			939 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			939 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {{ $parameters := index . 0 }}
 | |
| {{ $extendable := index . 1 }}
 | |
| {{ $q := index . 2 }}
 | |
| 
 | |
| 
 | |
| <div class="w-full flex flex-row gap-x-3 mb-3 justify-between" id="simplesearchbox">
 | |
| 	<div class="flex flex-row justify-between gap-x-3 w-full">
 | |
| 		<label for="q" class="hidden">Suchbegriffe</label>
 | |
| 		<input
 | |
| 			value="{{ $parameters.Placeholder }}"
 | |
| 			type="search"
 | |
| 			name="q"
 | |
| 			minlength="3"
 | |
| 			required
 | |
| 			placeholder="Suchbegriff (min. 3 Zeichen)"
 | |
| 			class="w-full grow
 | |
| 			placeholder:italic font-serif placeholder:font-sans" />
 | |
| 		<button id="submitbutton" type="submit" class="min-w-36" form="simplesearchform">
 | |
| 			<i class="ri-hourglass-2-fill request-indicator spinning mr-1"></i>Suchen
 | |
| 		</button>
 | |
| 	</div>
 | |
| 
 | |
| 	{{ if $extendable }}
 | |
| 		<a
 | |
| 			href="/suche/{{ $parameters.Collection }}?extended=true"
 | |
| 			class="whitespace-nowrap self-end block ">
 | |
| 			<i class="ri-arrow-right-long-line"></i> Erweiterte Suche
 | |
| 		</a>
 | |
| 	{{ end }}
 | |
| </div>
 | |
| 
 | |
| <script></script>
 | 
