index.html (538B)
1 {{ define "title" }}{{ .Site.Title }}{{ end }} 2 {{ define "main" }} 3 <h1>overview</h1> 4 <a href="/bill/">bill</a> 5 <a href="/report/">report</a> 6 <style> 7 body { 8 margin: 0; 9 } 10 main { 11 display: flex; 12 flex-direction: column; 13 justify-content: center; 14 align-items: center; 15 height: 100vh; 16 background-color: black; 17 font-family: sans-serif; 18 } 19 h1 { 20 color: white; 21 } 22 a { 23 font-size: 2rem; 24 color: black; 25 text-decoration: none; 26 padding: .5rem 1rem; 27 background-color: white; 28 margin: 1rem; 29 width: 8rem; 30 text-align: center; 31 } 32 </style> 33 {{ end }}