zulip/templates/zerver/why-zulip.html

31 lines
740 B
HTML
Raw Normal View History

2017-07-19 05:45:45 +02:00
{% 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">
{% stylesheet 'landing-page' %}
{{ render_bundle('landing-page') }}
{% endblock %}
{% block portico_content %}
{% include 'zerver/landing_nav.html' %}
<div class="portico-landing why-page">
<div class="hero small-hero">
<h1 class="center">{% trans %}Why Zulip?{% endtrans %}</h1>
</div>
2017-07-19 05:45:45 +02:00
<div class="main">
<div class="padded-content">
<div class="inner-content">
{{ render_markdown_path('zerver/why-zulip.md') }}
2017-07-19 05:45:45 +02:00
</div>
</div>
</div>
</div>
{% endblock %}