-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathclients.html
71 lines (71 loc) · 2.56 KB
/
clients.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
---
layout: default
title: All email clients tested on Can I email…
permalink: /clients/
---
<div class="compare">
<form action="/" method="get" id="compare-form" class="compare-form">
<div class="settings-title">
Select email clients to compare
<div class="settings-title-actions">
<button type="button" id="compare-check-all-button" class="button" data-label-toggle="Uncheck all" data-checked="true">Check all</button>
<div class="button-group">
<button type="button" id="compare-mobile-button" class="button">Mobile</button>
<button type="button" id="compare-desktop-button" class="button">Desktop</button>
</div>
</div>
</div>
<div class="compare-options">
<ul class="compare-list">
{% assign clients = site.clients | sort:"display_order" %}
{% for client in clients %}
<li class="compare-list-item">
<input type="checkbox" id="compare-{{ client.slug }}" name="{{ client.slug }}" value="on" />
<label for="compare-{{ client.slug }}">{{ site.data.nicenames.family[client.slug] | default: client.slug | escape_once }}</label>
<ul class="compare-child-list">
{% for platform in client.platforms %}
<li class="compare-child-list-item">
<input type="checkbox" id="compare-{{ client.slug }}-{{ platform }}" name="{{ client.slug }}" value="{{ platform }}" />
<label for="compare-{{ client.slug }}-{{ platform }}">{{ site.data.nicenames.platform[platform] | default: platform | escape_once }}</label>
</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
</div>
</form>
</div>
<div class="posts">
<div class="post post--default">
<div class="post-inside">
<h1 class="post-title">Email Clients</h1>
<p>
Here's an index of all the email clients we currently test features on.
</p>
<ul class="list">
{% assign clients = site.clients | sort:"display_order" %}
{% for client in clients %}
<li>
<a href="{{ client.url }}">{{ site.data.nicenames.family[client.slug] | default: client.slug | escape_once }}</a>
<small>
{% for platform in client.platforms %}
{%- if forloop.first == true -%}
(
{%- endif -%}
<a href="{{ client.url }}#{{ platform }}">{{ site.data.nicenames.platform[platform] | default: platform | escape_once }}</a>
{%- if forloop.last == true -%}
)
{%- else -%}
,
{%- endif -%}
{% endfor %}
</small>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
<link rel="prefetch" href="/api/data-ordered.json" />
<script src="/assets/js/compare.js" defer></script>