mirror of https://github.com/zulip/zulip.git
34 lines
886 B
HTML
34 lines
886 B
HTML
|
{% extends "zerver/portico.html" %}
|
|||
|
{% set entrypoint = "landing-page" %}
|
|||
|
|
|||
|
{% set PAGE_TITLE = "Zulip project values" %}
|
|||
|
|
|||
|
{% set PAGE_DESCRIPTION = "Learn about the values that are behind everything we do as we work to build the world’s best team chat software." %}
|
|||
|
|
|||
|
{% 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>
|
|||
|
</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 %}
|