matrix.org/templates/ecosystem/bridge_implementations.html

71 lines
2.8 KiB
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "section.html" %}
{% block content %}
<div class="page-header">
<div class="hero-block">
<h1>{{ section.title }}</h1>
<p>All the {{ section.title }} bridges</p>
</div>
</div>
<div class="bridges_implem">
{% set bridges_data = load_data(path=section.path~"bridges.toml") %}
{% for bridge in bridges_data.bridges %}
<div class="implementation-bg">
<div class="implementation">
<div class="leftcol">
{% if bridge.featured %}<div class="recommended-chip">Recommended</div>{% endif %}
<div class="title-row">
<h3 id="{{ bridge.name | slugify }}">{{ bridge.name }}</h3>
<div class="maturity {{ bridge.maturity | lower }}">{{ bridge.maturity | title }}</div>
</div>
<p>{{ bridge.summary | markdown | safe }}</p>
<div class="project-links">
{% if bridge.docs %}
<a href="{{ bridge.docs }}" class="pill">
{{ load_data(path="/assets/documentation.svg") | safe }}
Documentation
</a>
{% endif %}
{% if bridge.room %}
<a href="https://matrix.to/#/{{ bridge.room }}" class="pill">
{{ load_data(path="/assets/support.svg") | safe }}
Support room
</a>
{% endif %}
{% if bridge.repo %}
<a href="{{ bridge.repo }}" class="pill">
{{ load_data(path="/assets/repository.svg") | safe }}
Repository
</a>
{% endif %}
</div>
<div class="privileges">
Access needed:
<div>
<div>{{ section.title }} {{ bridge.privilege.platform }}</div>
<div>Matrix {{ bridge.privilege.matrix }}</div>
</div>
</div>
<div class="licence">
Licence: 
<div>
<a href="https://spdx.org/licenses/{{ bridge.license }}.html">{{ bridge.license }}</a>
</div>
</div>
</div>
<div class="features-matrix">
<ul>
{% for feature, supported in bridge.supports %}
<li {% if supported %}class="supported" {% endif %}>
{{ feature | replace(from="_", to=" ") | title }}
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
{% endfor %}
</div>
{% endblock content %}