zulip/templates/zerver/for-open-source.html

36 lines
922 B
HTML

{% extends "zerver/portico.html" %}
{% block title %}
<title>Zulip: the best group chat for open source projects</title>
{% endblock %}
{% block customhead %}
{{ super() }}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% stylesheet 'portico' %}
{% 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">
<h1 class="center">{% trans %}The best chat for open source projects{% endtrans %}</h1>
<p>Engage your community with fun, thoughtful, and organized discussion</p>
</div>
<div class="main">
<div class="padded-content">
<div class="inner-content">
{{ render_markdown_path('zerver/for/open-source.md') }}
</div>
</div>
</div>
</div>
{% endblock %}