14 lines
		
	
	
	
		
			569 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			569 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
 | 
						|
<script>
 | 
						|
 function floatButton() {
 | 
						|
     document.getElementById("floatbutt").hidden = true;
 | 
						|
     window.location.href = '{{ link }}';
 | 
						|
 }
 | 
						|
</script>
 | 
						|
 | 
						|
<button class="!rounded-lg bg-blue-600 px-4 py-2 !text-neutral !no-underline hover:!bg-blue-500 dark:bg-blue-800 dark:hover:!bg-blue-700 fixed bottom-4 right-8" type="button" name="floatbutt" onclick="floatButton()" id="floatbutt">
 | 
						|
    <i>{{ text }}</i> 
 | 
						|
    <span class="relative inline-block align-sub size-5 fill-current flex-auto">
 | 
						|
        {{ load_data(path="icons/" ~ icon ~ ".svg") | safe }}
 | 
						|
    </span>
 | 
						|
</button>
 |