1
0
Fork 0
empact/server/app/app.tmpl

21 lines
348 B
Cheetah
Raw Normal View History

2015-03-06 12:15:11 +00:00
{{define "app"}}
2015-03-05 13:49:50 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>Empact</title>
2015-03-06 12:15:11 +00:00
<link rel="stylesheet" href="/app/hello.css">
2015-03-05 13:49:50 +00:00
</head>
<body>
<h1>Please Sign in with your GitHub account</h1>
<a href="/auth/signin">
2015-03-06 12:15:11 +00:00
<img src="/app/github_mark_120.png">
2015-03-05 13:49:50 +00:00
</a>
2015-03-06 12:15:11 +00:00
<script src="/app/hello.js"></script>
2015-03-05 13:49:50 +00:00
</body>
</html>
{{end}}