You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
647 B
Cheetah
21 lines
647 B
Cheetah
{{ define "base" -}}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{template "title" .}}</title>
|
|
<link rel="stylesheet" href="/static/css.main.css">
|
|
<link rel="short icon" href="/static/img/favicon.ico" type="image/x-icon">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Server Sent Events Example</h1>
|
|
</header>
|
|
<main>
|
|
{{template "main" .}}
|
|
</main>
|
|
</body>
|
|
<footer>Powered By <a href='https://golang.org/'>Go</a> in {{ .CurrentYear }}</footer>
|
|
<script src="/static/js/main.js" type="text/javascript"></script>
|
|
</html>
|
|
{{ end }} |