-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.template
45 lines (37 loc) · 1.52 KB
/
index.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<html>
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script>
<style>
body {
text-align:center;
}
#projects {
}
</style>
</head>
<body>
<div class="container">
<h1> {kodeklubben tromsø scratch hall of fame}</h1>
<div class="row">
{{ range . }}
<div class="col-sm-4 col-md-4 col-lg-4">
<div class="thumbnail">
<a href="http://scratch.mit.edu/projects/{{.ID}}" target="_blank"><img src="http://{{.Thumbnail}}"
alt="http://{{.Thumbnail}}"></a>
<div class="caption">
<h3>{{ .Title }}</h3>
<p>Av: <a href="http://scratch.mit.edu/users/{{.Creator.Username}}"
target="_blank">{{.Creator.Username}}</a> </p>
<p><a href="http://scratch.mit.edu/projects/{{.ID}}" target="_blank" class="btn btn-success" role="button">Spill!</a></p>
</div>
</div>
</div>
{{ end }}
</div>
</div>
</body>
</html>