mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
Removes the default title element of "Zulip" from `base.html` and the default meta-description sentence from `meta_tags.html`. Also removes default open graph metadata. For portico templates that would would fail tests, set both `PAGE_TITLE` and `PAGE_DESCRIPTION` variables with appropriate content. Co-authored-by: Alya Abbott <alya@zulip.com>
31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
{% extends "zerver/portico.html" %}
|
|
{% set entrypoint = "landing-page" %}
|
|
|
|
{% set PAGE_TITLE = "Website attributions | Zulip" %}
|
|
{% set PAGE_DESCRIPTION = "Attributions for the Zulip website." %}
|
|
|
|
{% 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">
|
|
<div class="hero empty-hero"></div>
|
|
<div class="main">
|
|
<div class="padded-content">
|
|
<h1>Website attributions</h1>
|
|
<ul>
|
|
<li>
|
|
<b>On <a href="/for/business">/for/business</a> page:</b>
|
|
<img alt="" src="/static/images/landing-page/companies/software-engineer.svg" />
|
|
<p>"<a href="https://iconscout.com/illustration/software-engineer-2043023">Software engineer Illustration</a>" By <a href="https://iconscout.com/contributors/delesign/illustrations">Delesign Graphic</a> is licensed under <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.</p>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|