15 lines
422 B
HTML
15 lines
422 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hello, World!</title>
|
|
<!-- Bootstrap CSS -->
|
|
<link href="/static/css/bootstrap.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
{{block "content" .}} {{end}}
|
|
<!-- Bootstrap JS and dependencies -->
|
|
<script src="/static/js/bootstrap.js"></script>
|
|
</body>
|
|
</html> |