2013-07-29 23:03:31 +02:00
{% extends "zerver/portico.html" %}
2013-02-06 20:25:04 +01:00
2017-02-28 01:45:55 +01:00
{% block customhead %}
{{ super() }}
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
{% stylesheet 'portico' %}
{% stylesheet 'landing-page' %}
2017-05-25 00:36:27 +02:00
{{ render_bundle('landing-page') }}
2017-02-28 01:45:55 +01:00
{% endblock %}
{% block hello_page_container %} hello-main{% endblock %}
2013-02-06 20:25:04 +01:00
{% block portico_content %}
2013-10-21 21:19:31 +02:00
2017-02-28 01:45:55 +01:00
{% include 'zerver/landing_nav.html' %}
< div class = "portico-landing integrations" >
< div class = "main" >
< div class = "padded-content" >
< div class = "inner-content" >
2013-10-21 21:19:31 +02:00
2017-06-12 21:50:02 +02:00
< div id = "integration-main-text" >
< header >
< h1 class = "portico-page-heading" >
{% trans %}Over 60 native integrations.{% endtrans %}
< / h1 >
< / header >
< h2 class = "portico-page-subheading" >
{% trans %}
And hundreds more through
< a href = "#hubot" > Hubot< / a > ,
< a href = "#zapier" > Zapier< / a > ,
and
< a href = "#ifttt" > IFTTT< / a > .
{% endtrans %}
< / h2 >
< / div >
2013-10-30 00:11:56 +01:00
2013-10-21 21:19:31 +02:00
< div id = "integration-instruction-block" class = "integration-instruction-block" >
2017-04-06 02:21:20 +02:00
< a href = "#!" id = "integration-list-link" > < i class = "icon-vector-circle-arrow-left" > < / i > < span > Back to list< / span > < / a >
2013-10-21 21:19:31 +02:00
< / div >
2017-04-06 02:29:10 +02:00
< div class = "clear-float" > < / div >
2013-10-21 21:19:31 +02:00
< div class = "integration-lozenges" >
2016-07-29 15:06:41 +02:00
{% for integration in integrations_dict.values() %}
{% if integration.is_enabled() %}
< div class = "integration-lozenge integration-{{ integration.name }}" >
< a class = "integration-link integration-{{ integration.name }}" href = "#{{ integration.name }}" >
2017-04-06 23:16:21 +02:00
< div class = "square-wrapper" >
< img class = "integration-logo" src = "/{{ integration.logo }}" alt = "{{ integration.display_name }} logo" / >
< / div >
2016-07-29 15:06:41 +02:00
{% if integration.secondary_line_text %}
2017-03-28 14:27:39 +02:00
< span class = "integration-label" style = "padding-bottom: 0px;" > {{ integration.display_name }}< / span >
2016-07-29 15:06:41 +02:00
< span class = "integration-label-secondary" > {{ integration.secondary_line_text }}< / span >
{% else %}
< span class = "integration-label" > {{ integration.display_name}}< / span >
{% endif %}
< / a >
< / div >
{% endif %}
{% endfor %}
2013-10-21 21:19:31 +02:00
< / div >
2017-02-28 01:45:55 +01:00
< div class = "portico-page-header extra" id = "hubot-integrations" > < a href = "#" class = "no-style" > < i class = "icon-vector-gears portico-page-header-icon" > < / i > Integrations available via Hubot< / a > < / div >
< p class = "extra" > The official < a class = "integration-link integration-hubot" href = "#hubot" > < span class = "integration-label" > Hubot< / span > < / a >
integration provides an extension point for additional Zulip integrations. < / p > < p class = "extra" > A non-comprehensive list of integrations available through
2016-02-23 21:04:12 +01:00
< a class = "integration-link integration-hubot" href = "#hubot" > < span class = "integration-label" > Hubot< / span > < / a > follows below:< / p >
< div class = "integration-lozenges" >
2016-11-23 18:58:59 +01:00
{% for integration in hubot_lozenges_dict.values() %}
< div class = "integration-lozenge integration-{{ integration.name }}" >
< a class = "integration-link integration-{{ integration.name }}" href = "{{ integration.git_url }}" >
2017-04-06 23:16:21 +02:00
< div class = "square-wrapper" >
< img class = "integration-logo" src = "/{{ integration.logo }}" alt = "{{ integration.logo_alt }} logo" / >
< / div >
2016-11-23 18:58:59 +01:00
< span class = "integration-label" > {{ integration.display_name}}< / span >
< / a >
< / div >
{% endfor %}
2016-02-23 21:04:12 +01:00
< / div >
2013-10-21 21:19:31 +02:00
< div id = "integration-instructions-group" >
2016-11-26 00:25:05 +01:00
{% for integration in integrations_dict.values() %}
{% if integration.is_enabled() %}
2017-05-10 20:17:53 +02:00
< div id = {{ integration . name } } class = "integration-instructions" >
{{ integration.help_content }}
< p style = "font-size:11px; font-style:italic;" >
Logos are trademarks of their respective owners.
None of the integrations on this page are created by,
affiliated with, or supported by the companies
represented by the logos.
< / p >
< / div >
2016-11-26 00:25:05 +01:00
{% endif %}
{% endfor %}
2013-10-21 21:19:31 +02:00
< / div >
2017-06-12 21:50:02 +02:00
2017-02-28 01:45:55 +01:00
< / div > <!-- .inner - content -->
< / div > <!-- .padded - content -->
< / div > <!-- .main -->
< / div > <!-- .portico - landing -->
2013-10-21 21:19:31 +02:00
2013-02-06 20:25:04 +01:00
{% endblock %}