2013-07-29 23:03:31 +02:00
|
|
|
{% extends "zerver/portico.html" %}
|
2013-03-15 19:34:42 +01:00
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
{% block customhead %}
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2017-07-08 02:28:18 +02:00
|
|
|
<style media="screen">
|
|
|
|
.app.portico-page {
|
|
|
|
padding-bottom: 0px;
|
|
|
|
}
|
|
|
|
</style>
|
2017-03-09 21:18:14 +01:00
|
|
|
{% stylesheet 'portico' %}
|
|
|
|
{% stylesheet 'landing-page' %}
|
2017-05-25 00:36:27 +02:00
|
|
|
{{ render_bundle('landing-page') }}
|
2013-10-08 02:24:49 +02:00
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
{% endblock %}
|
2013-03-15 19:34:42 +01:00
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
{% block portico_content %}
|
2013-07-05 23:15:41 +02:00
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
{% include 'zerver/landing_nav.html' %}
|
2017-06-08 21:25:19 +02:00
|
|
|
{% include 'zerver/gradients.html' %}
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-08-10 22:53:42 +02:00
|
|
|
<div class="portico-landing apps">
|
2017-07-08 02:28:18 +02:00
|
|
|
<div class="hero">
|
|
|
|
<div id="waves"></div>
|
|
|
|
<div class="info">
|
|
|
|
<div class="flex">
|
|
|
|
<div class="cta">
|
|
|
|
<h1>Zulip for <span class="platform"></span></h1>
|
|
|
|
<p><span class="description"></span></p>
|
|
|
|
<a class="link no-style no-action" href="">
|
|
|
|
<button type="button" name="button">Download Zulip for <span class="platform"></span></button>
|
|
|
|
</a>
|
2017-03-09 21:18:14 +01:00
|
|
|
</div>
|
2017-07-08 02:28:18 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="image">
|
|
|
|
<div class="flex">
|
|
|
|
<img src="" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
<div class="other-apps">
|
|
|
|
<h2>Apps for every platform.</h2>
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
<div class="apps">
|
2017-07-28 04:29:37 +02:00
|
|
|
<a class="no-style" href="/apps/mac">
|
|
|
|
<i class="icon fa fa-apple" data-label="MacOS"></i>
|
|
|
|
</a>
|
|
|
|
<a class="no-style" href="/apps/windows">
|
|
|
|
<i class="icon fa fa-windows" data-label="Windows"></i>
|
|
|
|
</a>
|
|
|
|
<a class="no-style" href="/apps/linux">
|
|
|
|
<i class="icon fa fa-linux" data-label="Linux"></i>
|
|
|
|
</a>
|
|
|
|
<a class="no-style" href="/apps/android">
|
|
|
|
<i class="icon fa fa-android" data-label="Android"></i>
|
|
|
|
</a>
|
|
|
|
<a class="no-style" href="/apps/ios">
|
|
|
|
<i class="icon fa fa-mobile-phone" data-label="iOS"></i>
|
|
|
|
</a>
|
2017-03-09 21:18:14 +01:00
|
|
|
</div>
|
2013-03-15 19:34:42 +01:00
|
|
|
</div>
|
2017-03-09 21:18:14 +01:00
|
|
|
</div>
|
2013-03-15 19:34:42 +01:00
|
|
|
{% endblock %}
|