mirror of https://github.com/zulip/zulip.git
28 lines
680 B
HTML
28 lines
680 B
HTML
{% extends "zerver/portico.html" %}
|
|
|
|
{% block title %}
|
|
<title>The best group chat</title>
|
|
{% endblock %}
|
|
|
|
{% block customhead %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{ render_bundle('landing-page') }}
|
|
{% endblock %}
|
|
|
|
{% block portico_content %}
|
|
|
|
{% include 'zerver/landing_nav.html' %}
|
|
|
|
<div class="portico-landing why-page">
|
|
<div class="hero small-hero" id="why-zulip-hero"></div>
|
|
<div class="main">
|
|
<div class="padded-content why-zulip-padded-content">
|
|
<div class="inner-content">
|
|
{{ render_markdown_path('zerver/why-zulip.md') }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|