go-micro.dev/v5@v5.12.0/cmd/micro/web/templates/home.html (about) 1 {{define "content"}} 2 <h2 class="text-2xl font-bold mb-4">Dashboard</h2> 3 <div style="display:flex; align-items:center; gap:2em; margin-bottom:2em;"> 4 <div style="display:flex; align-items:center; gap:0.5em;"> 5 <span style="font-size:2.2em; vertical-align:middle;"> 6 {{if eq .StatusDot "green"}} 7 <span style="display:inline-block; width:1em; height:1em; background:#2ecc40; border-radius:50%;"></span> 8 {{else if eq .StatusDot "yellow"}} 9 <span style="display:inline-block; width:1em; height:1em; background:#ffcc00; border-radius:50%;"></span> 10 {{else}} 11 <span style="display:inline-block; width:1em; height:1em; background:#ff4136; border-radius:50%;"></span> 12 {{end}} 13 </span> 14 <span style="font-size:1.2em; font-weight:bold;">Status</span> 15 </div> 16 <div style="font-size:1.1em;">Services: <b>{{.ServiceCount}}</b></div> 17 <div style="font-size:1.1em; color:#2ecc40;">Running: <b>{{.RunningCount}}</b></div> 18 <div style="font-size:1.1em; color:#ff4136;">Stopped: <b>{{.StoppedCount}}</b></div> 19 </div> 20 <p>Welcome to the Micro dashboard. Use the sidebar to navigate services, logs, status, and API.</p> 21 {{end}}