mirror of https://github.com/zulip/zulip.git
36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
|
{% extends "zerver/portico.html" %}
|
||
|
{% set entrypoint = "landing-page" %}
|
||
|
|
||
|
{% set OPEN_GRAPH_TITLE = 'The Zulip developer community' %}
|
||
|
{% set OPEN_GRAPH_DESCRIPTION = 'Join the Zulip community to contribute, ask questions, or provide feedback to the creators of Zulip.' %}
|
||
|
|
||
|
{% block title %}
|
||
|
<title>The Zulip developer community</title>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block customhead %}
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block portico_content %}
|
||
|
|
||
|
{% include 'zerver/landing_nav.html' %}
|
||
|
|
||
|
|
||
|
<div class="portico-landing why-page no-slide">
|
||
|
<div class="hero bg-pycon">
|
||
|
<div class="bg-dimmer"></div>
|
||
|
<div class="content">
|
||
|
<h1 class="center">{% trans %}The Zulip developer community{% endtrans %}</h1>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="main">
|
||
|
<div class="padded-content">
|
||
|
<div class="inner-content markdown">
|
||
|
{{ render_markdown_path('zerver/developer-community.md') }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|