forked from seductivegeese/softi.es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
113 lines (113 loc) · 3.87 KB
/
template.html
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE HTML>
<html>
<head>
<title>UW Software Engineering class of 2019</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.min.js"></script>
<script type="text/javascript" src="softies.js"></script>
</head>
<body>
<section class="header">
<div id="bubbles"></div>
<h1>UW Software Engineering class of 2019</h1>
<h2>(SEductive GooSE)</h2>
<pre id="goose">
___
,-"" `.
,' _ o )`-._
/ ,' `-._<.===-'
/ /
/ ;
_ / ;
(`._ _.-"" ""--..__,' |
<_ `-"" \
<`- :
(__ <__. ;
`-. '-.__. _.' /
\ `-.__,-' _,'
`._ , /__,-'
""._\__,'< <____
| | `----.`.
| | \ `.
; |___ \-``
\ --<
`.`.<
`-'
</pre>
</section>
<section>
<h2>The People</h2>
<div class="people">
{{#each people}}
{{#unless cs}}
<div class="person">
<div class="icon" style="background-image:url('{{image}}')"></div>
<div class="info">
<h3>{{name}}</h3>
<h4>{{description}}</h4>
<ul>
{{#if github}}
<li>
<i class="fa fa-github"></i>
<a href="https://github.com/{{github}}" target="_blank">{{github}}</a>
</li>
{{/if}}
{{#if website}}
<li>
<i class="fa fa-globe"></i>
<a href="http://{{website}}" target="_blank">{{website}}</a>
</li>
{{/if}}
</ul>
</div>
</div>
{{/unless}}
{{/each}}
<div class="person hidden"></div>
<div class="person hidden"></div>
<div class="person hidden"></div>
<div class="person hidden"></div>
</div>
</section>
<section>
<h2>SE at heart ❤</h2>
<div class="people">
{{#each people}}
{{#if cs}}
<div class="person">
<div class="icon" style="background-image:url('{{image}}')"></div>
<div class="info">
<h3>{{name}}</h3>
<h4>{{description}}</h4>
<ul>
{{#if github}}
<li>
<i class="fa fa-github"></i>
<a href="https://github.com/{{github}}" target="_blank">{{github}}</a>
</li>
{{/if}}
{{#if website}}
<li>
<i class="fa fa-globe"></i>
<a href="http://{{website}}" target="_blank">{{website}}</a>
</li>
{{/if}}
</ul>
</div>
</div>
{{/if}}
{{/each}}
<div class="person hidden"></div>
<div class="person hidden"></div>
<div class="person hidden"></div>
<div class="person hidden"></div>
</div>
</section>
<section>
<h2>Contribute</h2>
<p>Like everything we do in SE, the source code for this site is <a href="https://github.com/seductivegeese/softi.es">on Github.</a> Don't see yourself? Want to change something? Fork the repo and submit a pull request with your changes!</p>
</body>
</html>