-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathemail.html
130 lines (125 loc) · 6.24 KB
/
email.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
---
permalink: email/
---
{%- for post in site.posts limit:1 -%}
{% assign latest = post %}
{%- endfor -%}
<!DOCTYPE html>
<html lang="en" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html charset=UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="x-apple-disable-message-reformatting">
<meta name="color-scheme" content="light dark only">
<meta name="supported-color-schemes" content="light dark only">
<title>{{ latest.title }}</title>
{%- capture styles -%}{% include_relative resources/css/email.scss.liquid %}{% endcapture %}
<style type="text/css">
{{ styles | scssify }}
</style>
</head>
<body class="body" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0">
<center>
<div style="display: none">{{ latest.content | markdownify | strip_html | truncatewords: 20 }}</div>
<div role="article" aria-roledescription="email" aria-label="{{ latest.title }}" lang="en">
<table id="bodyTable" align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" style="font-size:1rem" role="presentation">
<tr>
<td id="bodyCell" align="center" valign="top">
<table id="cloth" border="0" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td align="center" valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="100%" role="presentation">
<tr>
<td valign="top" align="center" class="header-content">
<h1>{{ latest.title }}</h1>
<img src="https://shefgamedevsoc.github.io/assets/icons/Logo.png" width=40% />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center" valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="100%" role="presentation">
<tr>
<td valign="top">
<div class="body-content">
{{ latest.content }}
</div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center" valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="100%" role="presentation">
<tr>
<td valign="top" align="center" class="footer-content">
<p>
<a href="https://shefgamedevsoc.github.io/loom/{{ latest.slug }}">View email in browser</a>
</p>
<div class="presentational-container">
<table role="presentation">
<tbody>
<tr class="outer-row">
<td class="headshot-cell">
<a href="http://bit.ly/shefdev">
<img src="https://shefgamedevsoc.github.io/assets/icons/Logo.png" name="preview-image-url" alt="Logo"/>
</a>
</td>
<td class="description-cell">
<table role="presentation">
<tbody>
<tr>
<td colspan="2" class="full-name">Sheffield Game Devlelopment Society</td>
</tr>
<tr>
<td colspan="2" class="title">The University of Sheffield</td>
</tr>
<tr>
<td valign="top" class="website">
<a href="http://bit.ly/shefdev">bit.ly/shefdev</a>
</td>
</tr>
<tr>
<td colspan="2" class="social-icons">
<ul>
<li>
<a href="https://www.instagram.com/shefgamedevsoc/">
<img src="https://shefgamedevsoc.github.io/loom/resources/images/instagram.png" />
</a>
</li>
<li>
<a href="https://www.facebook.com/people/Sheffield-Game-Development-Society/100091868871243/">
<img src="https://shefgamedevsoc.github.io/loom/resources/images/facebook.png" />
</a>
</li>
<li>
<a href="https://www.linkedin.com/company/sheffield-game-development-society/?original_referer=https%3A%2F%2Fshefgamedevsoc.github.io%2F">
<img src="https://shefgamedevsoc.github.io/loom/resources/images/linkedin.png" />
</a>
</li>
</ul>
</td>
</tr>
</tbody>
</table>
</td>
</td>
</tbody>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</center>
</body>
</html>