Skip to content
Draft
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ collections:
permalink: /:path/
samples:
output: false
newsletter:
output: true

defaults:
-
Expand Down Expand Up @@ -65,6 +67,15 @@ defaults:
values:
playground: true

-
scope:
path: ""
type: newsletter
values:
layout: newsletter
permalink: /newsletter/:title/
section: newsletter

# Used by https://github.com/jekyll/jekyll-seo-tag
twitter:
username: CrystalLanguage
Expand Down
18 changes: 18 additions & 0 deletions _includes/newsletter/footer_sponsors.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td colspan="4" valign="top" width="25%" style="text-align: center; padding-top: 37px; padding-bottom: 32px;" class="textContent">
<h3 style="text-align: center">Thanks to our sponsors</h3>
</td>
</tr>
<tr>
{%- for sp in site.data.sponsor_logos_corporate %}
<td valign="top" width="25%" style="text-align: center" class="textContent">
<a href="{{ sp.url }}" target="_blank" class="sponsor" title="{{ sp.name }}" rel="sponsored nofollow">
<img src="/assets/{{ sp.logo }}" width="82" border="0">
<span class="small">{{ sp.name }}</span>
</a>
</td>
{%- endfor %}
</tr>
</table>
Loading