Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a248f95
Add `other.html`
awtj8o81ryywg793 Aug 16, 2026
0ccda49
Add `all_other_projects.html`
awtj8o81ryywg793 Aug 16, 2026
28aef96
Add `index.md`
awtj8o81ryywg793 Aug 16, 2026
164b104
Add `other.toml`
awtj8o81ryywg793 Aug 16, 2026
5601b7c
Display `project.maintainer` in `all_other_projects.html`
awtj8o81ryywg793 Aug 17, 2026
934cf7f
Display `project.licence` in `all_other_projects.html`
awtj8o81ryywg793 Aug 17, 2026
872b45a
Change `title` to "Miscellaneous"
awtj8o81ryywg793 Aug 18, 2026
37abfa3
Remove `all_other_projects.html`
awtj8o81ryywg793 Aug 19, 2026
35ed4a0
Add `all_miscellaneous_projects.html`
awtj8o81ryywg793 Aug 19, 2026
1ae4445
Remove `/content/ecosystem/other`
awtj8o81ryywg793 Aug 19, 2026
afa2c01
Add `index.md`
awtj8o81ryywg793 Aug 19, 2026
ed16f4b
Add `miscellaneous.toml`
awtj8o81ryywg793 Aug 19, 2026
d6925df
Remove `other.html`
awtj8o81ryywg793 Aug 19, 2026
8ec566f
Add `miscellaneous.html`
awtj8o81ryywg793 Aug 19, 2026
662f01b
Add `maturity` to `miscellaneous.toml`
awtj8o81ryywg793 Aug 21, 2026
f480960
Add `project.maturity` to `all_miscellaneous_projects.html`
awtj8o81ryywg793 Aug 21, 2026
e28bfc6
Allow `project.maturity` to be optional
awtj8o81ryywg793 Aug 29, 2026
a5ac162
Add matrirc to `miscellaneous.toml`
awtj8o81ryywg793 Aug 29, 2026
6264458
Add NeoBoard Standalone to `miscellaneous.toml`
awtj8o81ryywg793 Aug 29, 2026
30d1990
Reorder `miscellaneous.toml`
awtj8o81ryywg793 Aug 29, 2026
bbc00b5
Add "Miscellaneous Projects" section to `CONTENT.md`
awtj8o81ryywg793 Aug 29, 2026
5838517
Encode URLs using `urlencode_strict`
awtj8o81ryywg793 Aug 29, 2026
d023a97
Add `room` for NeoBoard Standalone
awtj8o81ryywg793 Aug 29, 2026
3164f81
Add support for `website` to `all_miscellaneous_projects.html`
awtj8o81ryywg793 Aug 29, 2026
da35373
Add `website` for NeoBoard Standalone
awtj8o81ryywg793 Aug 29, 2026
814d951
Add `website` for Third room
awtj8o81ryywg793 Aug 29, 2026
828e32c
Refine wording of `extra.summary`
awtj8o81ryywg793 Aug 29, 2026
adfda8a
Ensure obsolete projects are listed last
awtj8o81ryywg793 Aug 29, 2026
6dbc189
Add missing `maturity` fields
awtj8o81ryywg793 Aug 29, 2026
1068f40
Update `maturity` field wording in `CONTENT.md`
awtj8o81ryywg793 Aug 29, 2026
51e7b93
Add the missing `website` field to the example
awtj8o81ryywg793 Sep 1, 2026
e284f49
Add "Matrix Widget Toolkit" to `miscellaneous.toml`
awtj8o81ryywg793 Sep 1, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions content/ecosystem/other/index.md
Comment thread
awtj8o81ryywg793 marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
+++
title = "Miscellaneous"
template = "ecosystem/other.html"
weight = 7
extra.summary = """
Not all projects fit neatly into a specific category.
"""
+++

{{ all_other_projects() }}
9 changes: 9 additions & 0 deletions content/ecosystem/other/other.toml
Comment thread
awtj8o81ryywg793 marked this conversation as resolved.
Comment thread
awtj8o81ryywg793 marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[[project]]
name = "Third room"
description = """
Open, decentralised, immersive worlds built on Matrix.
"""
maintainer = "Element Creations Ltd."
licence = "Apache-2.0"
repository = "https://github.com/matrix-org/thirdroom"
room = "#thirdroom-dev:matrix.org"
13 changes: 13 additions & 0 deletions templates/ecosystem/other.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{% extends "page.html" %}
{% block content %}
<div class="page-header">
<div class="hero-block">
<h1>{{ page.title }}</h1>
<p>{{ page.extra.summary }}</p>
</div>
</div>

<div class="content other_projects_page">
{{ page.content | safe }}
</div>
{% endblock content %}
27 changes: 27 additions & 0 deletions templates/shortcodes/all_other_projects.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{% set other_projects_data = load_data(path="content/ecosystem/other/other.toml") %}
<div class="projects-card-deck">
{% for project in other_projects_data.project %}
<div class="project-card">
<h3>{{ project.name }}</h3>
<div class="subtitle">{{ project.maintainer }}</div>
<div class="metadata-pills">
<div class="pill licence">{{ project.licence }}</div>
</div>
<p class="description">{{ project.description | markdown(inline=true) | safe }}</p>
<div class="server-links">
{% if project.repository %}
<a href="{{ project.repository }}">
{{ load_data(path="/assets/projects/repo.svg") | safe }}
Repository
</a>
{% endif %}
{% if project.room %}
<a href="https://matrix.to/#/{{ project.room }}">
{{ load_data(path="/assets/projects/matrix.svg") | safe }}
Matrix Room
</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>