aboutsummaryrefslogtreecommitdiffstats
path: root/clients.html
diff options
context:
space:
mode:
authorMatt Rude <[email protected]>2018-02-03 21:08:46 -0600
committerMatt Rude <[email protected]>2018-02-03 21:08:46 -0600
commitc5c60729062cc3d89be7447b5d330367417aa6f7 (patch)
tree74330b48908247623f48b01420d833c7feb3fab7 /clients.html
parent0c0cde3923440b2d293549c7e430a38082cc0457 (diff)
downloadxmpp-site-lite-c5c60729062cc3d89be7447b5d330367417aa6f7.tar.gz
xmpp-site-lite-c5c60729062cc3d89be7447b5d330367417aa6f7.tar.bz2
xmpp-site-lite-c5c60729062cc3d89be7447b5d330367417aa6f7.zip
Update
Diffstat (limited to 'clients.html')
-rw-r--r--clients.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/clients.html b/clients.html
new file mode 100644
index 0000000..e2a3300
--- /dev/null
+++ b/clients.html
@@ -0,0 +1,39 @@
+---
+layout: default
+title: XMPP Client List
+permalink: /clients/
+---
+
+<h1>XMPP Client List</h1>
+
+<div class="container offsetanchor" id="clients">
+ {% for type in site.data.clienttypes %}
+ <center><h2 style="padding:20px 0;font-size:3em;">{{ type.name }}</h2></center>
+ <div class="row">
+ <div class="client-{{ type.slug }}">
+ <div class="row">
+ {% for client in site.data.clients %}
+ {% if client.type == type.slug %}
+ <div class="col-md-4">
+ <div class="card">
+ {% if client.img %}
+ <img class="card-img-top" src="{{ site.url }}/assets/img/clients/{{ client.img }}"/>
+ {% endif %}
+ <div class="card-body">
+ <h3 class="card-title">{{ client.name }}</h3>
+ <ul class="list-group-flush card-text" style="padding-left:unset;">
+ <li class="list-group-item"><b>Platform:</b> {{ client.platform }}</li>
+ <li class="list-group-item"><b>Encryption:</b> {{ client.encryption }}</li>
+ <li class="list-group-item"><b>Website:</b> <a href="{{ client.url }}">{{ client.domain }}</a></li>
+ {% if client.text %}<li class="list-group-item">{{ client.text }}</li>{% endif %}
+ </ul>
+ </div><!-- end class card-body -->
+ </div><!-- end class card -->
+ </div><!-- end class col-md-4 -->
+ {% endif %}
+ {% endfor %}
+ </div><!-- end class row -->
+ </div><!-- end class client-{{ type.slug }} -->
+ </div><!-- end class row -->
+ {% endfor %}
+</div><!-- end id clients -->