zulip/templates/corporate/history.html

56 lines
1.8 KiB
HTML
Raw Normal View History

{% extends "zerver/portico.html" %}
{% set entrypoint = "landing-page" %}
{% set PAGE_TITLE = "History of the Zulip project" %}
{% set PAGE_DESCRIPTION = "Learn how Zulip grew from a small startup to become
the project with the most active open-source development community of any 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' %}
2022-10-05 20:05:19 +02:00
<div class="portico-landing why-page solutions-page">
<div class="hero bg-pycon">
<div class="bg-dimmer"></div>
<div class="content">
<h1 class="center">History of the Zulip project</h1>
</div>
</div>
<div class="main">
<div class="padded-content">
<div class="photo-description">
Zulip at the PyCon Sprints in Portland, Oregon.
Over seventy-five people sprinted during the four day event.
</div>
2022-10-05 20:05:19 +02:00
<div class="inner-content markdown">
{{ render_markdown_path('corporate/history.md') }}
</div>
2022-10-05 20:05:19 +02:00
<div class="inner-content history markdown">
<div class="sponsors">
<div class="sponsor-picture">
<a href="https://seedfund.nsf.gov/">
<img src="{{ static('images/landing-page/history/nsf-logo.png') }}" alt="" />
</a>
</div>
<div class="sponsor-picture">
<a href="https://summerofcode.withgoogle.com/">
<img src="{{ static('images/landing-page/history/gsoc-logo.png') }}" alt="" />
</a>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}