Skip to content

Commit 01916f9

Browse files
Add newsletter template
1 parent 85aaafc commit 01916f9

File tree

6 files changed

+637
-0
lines changed

6 files changed

+637
-0
lines changed

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ collections:
1717
permalink: /:path/
1818
samples:
1919
output: false
20+
newsletter:
21+
output: false
2022

2123
defaults:
2224
-
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
3+
<tr>
4+
<td colspan="4" valign="top" width="25%" style="text-align: center; padding-top: 37px; padding-bottom: 32px;" class="textContent">
5+
<h3 style="text-align: center">Thanks to our sponsors</h3>
6+
</td>
7+
</tr>
8+
<tr>
9+
{%- for sp in site.data.sponsor_logos_corporate %}
10+
<td valign="top" width="25%" style="text-align: center" class="textContent">
11+
<a href="{{ sp.url }}" target="_blank" class="sponsor" title="{{ sp.name }}" rel="sponsored nofollow">
12+
<img src="/assets/{{ sp.logo }}" width="82" border="0">
13+
<span class="small">{{ sp.name }}</span>
14+
</a>
15+
</td>
16+
{%- endfor %}
17+
</tr>
18+
</table>

0 commit comments

Comments
 (0)