mirror of https://github.com/zulip/zulip.git
36 lines
837 B
HTML
36 lines
837 B
HTML
|
{% extends "zerver/portico.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
<title>Migrating from HipChat and Stride</title>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block customhead %}
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
{{ render_bundle('landing-page') }}
|
||
|
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block portico_content %}
|
||
|
|
||
|
{% include 'zerver/landing_nav.html' %}
|
||
|
|
||
|
<div class="portico-landing why-page">
|
||
|
<div class="hero bg-pycon atlassian">
|
||
|
<div class="bg-dimmer"></div>
|
||
|
<div class="content">
|
||
|
<h1 class="center">Migrating from HipChat and Stride</h1>
|
||
|
<p></p>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="main">
|
||
|
<div class="padded-content">
|
||
|
<div class="inner-content">
|
||
|
{{ render_markdown_path('zerver/atlassian.md') }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|