zulip/templates/zerver/for-mystery-hunt.html

40 lines
891 B
HTML

{% extends "zerver/portico.html" %}
{% block title %}
<title>Zephyr reloaded</title>
{% endblock %}
{% block customhead %}
{{ super() }}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% stylesheet 'portico' %}
{% stylesheet 'landing-page' %}
{{ render_bundle('landing-page') }}
{% endblock %}
{% block portico_content %}
{% include 'zerver/landing_nav.html' %}
<div class="portico-landing why-page">
<div class="hero bg-pycon mit">
<div class="bg-dimmer"></div>
<div class="content">
<h1 class="center">The best chat for mystery hunt</h1>
<p></p>
</div>
</div>
<div class="main">
<div class="padded-content">
<div class="inner-content">
{{ render_markdown_path('zerver/for/mystery-hunt.md') }}
</div>
</div>
</div>
</div>
{% endblock %}