-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 863 Bytes
/
index.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
---
title: 100 Shapes Signature generator
---
<!DOCTYPE html>
<html>
<head>
<title>{{ page.title }}</title>
<style type="text/css">
html {
font-family:'brandon grotesque',tahoma;
color:#343434;
line-height:30px;
font-weight:lighter;
font-size:17px;
}
</style>
</head>
<body>
<h1>100 Shape Signature Generator</h1>
<h2>Instructions</h2>
<ul>
<li>
Choose signature from below
</li>
<li>
Select and copy All into <a href="https://mail.google.com/mail/u/0/#settings/general">gmail signature box</a>
</li>
<li>
Hit save at the bottom of gmail
</li>
</ul>
<h2>Employees</h2>
<ul>
{% for employee in site.employees %}
<li>
<img src="{{ employee.picture }}" width="50" />
<a href="{{ employee.url }}">{{ employee.name }}</a>
</li>
{% endfor %}
</ul>
</body>
</html>