2022-10-07 19:24:59 +02:00
|
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
|
{% set entrypoint = "landing-page" %}
|
|
|
|
|
|
|
|
|
|
{% set PAGE_TITLE = "Zulip project values" %}
|
|
|
|
|
|
2024-02-27 20:04:42 +01:00
|
|
|
|
{% set PAGE_DESCRIPTION = "Learn about the values that are behind everything we
|
|
|
|
|
do as we work to build the world’s best organized team chat software." %}
|
2022-10-07 19:24:59 +02:00
|
|
|
|
|
|
|
|
|
{% 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 solutions-page">
|
|
|
|
|
<div class="hero">
|
|
|
|
|
<div class="content">
|
|
|
|
|
<h1 class="center">Zulip project values</h1>
|
2022-11-15 19:45:32 +01:00
|
|
|
|
<p>
|
2024-02-27 20:04:42 +01:00
|
|
|
|
These values are behind everything we do as we <br />
|
|
|
|
|
work to build the world’s best organized team chat.
|
2022-11-15 19:45:32 +01:00
|
|
|
|
</p>
|
2022-10-07 19:24:59 +02:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="main">
|
|
|
|
|
<div class="padded-content">
|
|
|
|
|
|
|
|
|
|
<div class="inner-content markdown">
|
|
|
|
|
{{ render_markdown_path('corporate/values.md') }}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|