-
Notifications
You must be signed in to change notification settings - Fork 1
/
index_template.txt
72 lines (54 loc) · 2.42 KB
/
index_template.txt
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<head>
<title>Golang Recipes</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-2.1.3.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<!-- index.css -->
<link href="index.css" rel="stylesheet">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
</head>
<body>
<div class="container-fluid center-block text-center">
<div class="header">
<h1>Golang Recipes</h1>
</div>
<div class="row">
<div class="intro col-md-4">
<h3>
<p class="hidden-xs">
Hello! Welcome to Golang Recipes. This website aims to show examples of how the Go programming language can be used. Feel free to contribute and create a pull request!
Upcoming Additions:
<ul>
<li>SSL support</li>
<li>Syntax Highlighting for code</li>
<li>Go Playground examples</li>
</ul>
<img class="img-responsive" src="https://golang.org/doc/gopher/appenginegophercolor.jpg">
</p>
</h3>
</div>
<div class="recipes col-md-4 col-sm-6">
{{.GenerateLinks}}
</div>
<div class="image col-md-4 col-sm-6">
<img class="hidden-xs" src="https://github.com/golang-samples/gopher-vector/blob/master/gopher-side_color.png?raw=true">
</div>
</div>
<div class="footer">
<p>Created By <a href="http://coreyprak.org">Corey Prak</a></p>
<p><a href="http://twitter.com/coreyprak">@coreyprak</a></p>
<p>Image Credits</p>
<p><a href="https://github.com/golang-samples/gopher-vector">Image Github Repo</a></p>
<p>The Go gopher was designed by Renee French. (<a href="http://reneefrench.blogspot.com">http://reneefrench.blogspot.com/</a>)</p>
<p>The gopher vector data was made by Takuya Ueda (<a href="http://u.hinoichi.net">http://u.hinoichi.net</a>). Licensed under the Creative Commons 3.0 Attributions license.</p>
</div>
</div>
</body>
</html>