example/gin-example/templates/index.html (36 lines of code) (raw):
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{.Title}}</title>
<style>
.navbar {
background-color: #333;
overflow: hidden;
}
.navbar a {
float: left;
display: block;
color: white;
padding: 14px 20px;
text-align: center;
text-decoration: none;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
</style>
</head>
<body>
<!-- Navigation bar -->
<div class="navbar">
<a href="/">Home</a>
<a href="/about">About</a>
</div>
<div class="text-center">
<h1>{{.Message}}</h1>
<p>{{.App}}</p>
</div>
</body>
</html>