-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (92 loc) · 3.28 KB
/
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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>UT Martin SigEp Email Templates</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
@import url("https://fonts.googleapis.com/css?family=Istok+Web|Playfair+Display&display=swap");
body {
font-family: 'Istok Web', sans-serif;
margin-top: 3rem;
}
h1, h2, h3, h4, h5 {
font-family: 'Playfair Display', serif;
font-weight: 600;
}
</style>
</head>
<body>
<div class="container">
<h2 class="mb-4">UT Martin SigEp Email Templates</h2>
<div class="card mb-3">
<div class="card-header">
<a href="message-from-the-avc/">Message from the Alumni & Volunteer Corp.</a>
</div>
<div class="card-body">
Used to communicate a single message of high importance with little distraction.
</div>
</div>
<div class="card mb-3">
<div class="card-header">
<a href="editable-header/">Editable Header</a>
</div>
<div class="card-body">
Use for one-off emails with customizable headers.
</div>
</div>
<div class="card mb-3">
<div class="card-header">
<a href="message-from-the-avc/">Message from Tennessee Kappa.</a>
</div>
<div class="card-body">
General template for communicating messages directly from the undergraduate chapter.
</div>
</div>
<div class="card mb-3">
<div class="card-header">
<a href="newsletter-two-column/">Tennessee Kappa News</a>
</div>
<div class="card-body">
Full two-column newsletter template.
</div>
</div>
<div class="card mb-3">
<div class="card-header">
<a href="the-1901-club/">1901 Club</a>
</div>
<div class="card-body">
Email update to our 1901 Club members that provide continued support to the chapter.
</div>
</div>
<div class="card mb-3">
<div class="card-header">
<a href="balanced-man-scholarship/">Balanced Man Scholarship</a>
</div>
<div class="card-body">
Update about the Balanced Man Scholarship.
</div>
</div>
<div class="card mb-3">
<div class="card-header">
<a href="contact-information-update/">Update Your Member Record</a>
</div>
<div class="card-body">
Shows the member his record, offers chance to make corrections.
</div>
</div>
<h4>Special Events</h4>
<div class="card mb-3">
<div class="card-header">
<a href="alumni-weekend/">Tennessee Kappa Alumni Weekend</a>
</div>
<div class="card-body">
Special template for annual event.
</div>
</div>
<div class="mt-3 text-center">
<small>Made with Virtue, Diligence, and Brotherly Love by <a href="https://utmartin.sigep.org/" target="_blank">UT Martin SigEp</a> | <a href="https://github.com/utmsigep/utmsigep-email-templates">Download on GitHub</a></small>
</div>
</div>
</body>
</html>