zulip/templates/zerver/apps.html

68 lines
2.5 KiB
HTML
Raw Normal View History

{% extends "zerver/portico.html" %}
2017-03-09 21:18:14 +01:00
{% block customhead %}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style media="screen">
.app.portico-page { padding-bottom: 0px; }
</style>
{{ bundle('landing-page') }}
2017-03-09 21:18:14 +01:00
{% endblock %}
2017-03-09 21:18:14 +01:00
{% block portico_content %}
2017-03-09 21:18:14 +01:00
{% include 'zerver/landing_nav.html' %}
{% include 'zerver/gradients.html' %}
2017-03-09 21:18:14 +01:00
<div class="portico-landing apps">
<div class="hero">
<div id="waves"></div>
<div class="inner-content">
<div class="info">
<div class="flex">
<div class="cta">
<h1>Zulip for <span class="platform"></span></h1>
<p class="description"></p>
<p class="download-instructions">For download instructions, go to the <a class="silver bold" href="/help/desktop-app-install-guide" target="_blank">desktop app install guide</a>.</p>
<a class="link no-action" href=""><span class="button green">Download Zulip for <span class="platform"></span></span></a>
<span id="download-android-apk"><a href="https://github.com/zulip/zulip-mobile/releases/latest">or manually download APK</a></span>
</div>
2017-03-09 21:18:14 +01:00
</div>
</div>
<div class="image">
<div class="flex">
templates: Fix more low-hanging HTML validation problems. "http://localhost:9981/help/enable-emoticon-translations":323.13-324.31: error: The “align” attribute on the “th” element is obsolete. Use CSS instead. "http://localhost:9981/help/enable-emoticon-translations":324.45-325.31: error: The “align” attribute on the “th” element is obsolete. Use CSS instead. "http://localhost:9981/help/enable-emoticon-translations":329.13-330.23: error: The “align” attribute on the “td” element is obsolete. Use CSS instead. "http://localhost:9981/help/enable-emoticon-translations":330.44-331.23: error: The “align” attribute on the “td” element is obsolete. Use CSS instead. "http://localhost:9981/help/enable-emoticon-translations":337.6-337.9: error: Stray end tag “p”. "http://localhost:9981/help/enable-emoticon-translations":337.6-337.9: error: Cannot recover after last error. Any further errors will be ignored. "http://localhost:9981/api/incoming-webhooks-walkthrough":381.4-381.77: error: An “img” element must have an “alt” attribute, except under certain conditions. For details, consult guidance on providing text alternatives for images. "http://localhost:9981/apps/":192.21-192.34: error: Bad value “” for attribute “src” on element “img”: Must be non-empty. "http://localhost:9981/apps/":192.21-192.34: error: An “img” element must have an “alt” attribute, except under certain conditions. For details, consult guidance on providing text alternatives for images. "http://localhost:9981/features/":225.9-225.82: error: An “img” element must have an “alt” attribute, except under certain conditions. For details, consult guidance on providing text alternatives for images. "http://localhost:9981/features/":230.72-232.8: error: Text not allowed in element “svg” in this context. "http://localhost:9981/features/":259.9-259.91: error: An “img” element must have an “alt” attribute, except under certain conditions. For details, consult guidance on providing text alternatives for images. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2019-04-23 05:50:41 +02:00
<img src="/static/images/loader.svg" alt="" />
</div>
</div>
</div>
</div>
2017-03-09 21:18:14 +01:00
<div class="other-apps">
<h2>Apps for every platform.</h2>
2017-03-09 21:18:14 +01:00
<div class="apps">
<a class="" href="/apps/mac">
2017-08-26 09:33:47 +02:00
<i class="icon fa fa-apple" data-label="macOS"></i>
</a>
<a class="" href="/apps/windows">
<i class="icon fa fa-windows" data-label="Windows"></i>
</a>
<a class="" href="/apps/linux">
<i class="icon fa fa-linux" data-label="Linux"></i>
</a>
<a class="" href="/apps/android">
<i class="icon fa fa-android" data-label="Android"></i>
</a>
<a class="" href="/apps/ios">
<i class="icon fa fa-mobile-phone" data-label="iOS"></i>
</a>
2017-03-09 21:18:14 +01:00
</div>
<div id="third-party-apps">
Zulip also works great in pinned browser tabs and
multi-protocol desktop chat apps
like <a href="http://rambox.pro">Rambox</a>
and <a href="https://meetfranz.com">Franz</a>.
</div>
</div>
2017-03-09 21:18:14 +01:00
</div>
{% endblock %}