github.com/10ego/gthp@v0.0.0-20241025155251-e1514fa71fbb/internal/templ/templates/index.templ (about) 1 package templates 2 3 templ Index(title string) { 4 @Layout("Home") { 5 <div class="bg-white shadow rounded-lg p-6"> 6 <h1 class="text-3xl font-bold mb-4">{ title }</h1> 7 <div hx-target="this" hx-swap="outerHTML"> 8 <button 9 hx-post="/api/data" 10 class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline" 11 > 12 Load Data 13 </button> 14 </div> 15 </div> 16 } 17 }