mirror of
https://github.com/minetest/contentdb.git
synced 2025-01-03 11:47:28 +01:00
Add About page
This commit is contained in:
parent
a5ec46f14c
commit
d16969837c
25
app/flatpages/about.md
Normal file
25
app/flatpages/about.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
title: About ContentDB
|
||||||
|
toc: False
|
||||||
|
|
||||||
|
## Development
|
||||||
|
|
||||||
|
ContentDB was created by [rubenwardy](https://rubenwardy.com/) in 2018, he was lucky enough to have the time available
|
||||||
|
as it was submitted as university coursework. To learn about the history and development of ContentDB,
|
||||||
|
[see the blog post](https://blog.rubenwardy.com/2022/03/24/contentdb/).
|
||||||
|
|
||||||
|
ContentDB is open source software, licensed on AGPLv3.0.
|
||||||
|
|
||||||
|
<a href="https://github.com/minetest/contentdb/" class="btn btn-primary">Source code</a>
|
||||||
|
<a href="https://github.com/minetest/contentdb/issues/" class="btn btn-secondary">Issue tracker</a>
|
||||||
|
<a href="https://rubenwardy.com/contact/" class="btn btn-secondary">Contact admin</a>
|
||||||
|
|
||||||
|
|
||||||
|
## Why was ContentDB created?
|
||||||
|
|
||||||
|
Before ContentDB, users had to manually install mods and games by unzipping their files into a directory. This is
|
||||||
|
poor user experience, especially for first-time users.
|
||||||
|
|
||||||
|
ContentDB isn't just about supporting the in-game content downloader; it's common for technical users to find
|
||||||
|
and review packages using the ContentDB website, but install using Git rather than the in-game installer.
|
||||||
|
**ContentDB's purpose is to be a well-formatted source of information about mods, games,
|
||||||
|
and texture packs for Minetest**.
|
@ -234,11 +234,12 @@
|
|||||||
|
|
||||||
<footer class="my-5">
|
<footer class="my-5">
|
||||||
<p class="pt-5 mb-1">
|
<p class="pt-5 mb-1">
|
||||||
ContentDB © 2018-23 to <a href="https://rubenwardy.com/">rubenwardy</a>
|
ContentDB © 2018-23 to <a href="{{ url_for('flatpage', path='about') }}">rubenwardy</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<ul class="list-inline my-1">
|
<ul class="list-inline my-1">
|
||||||
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='help') }}">{{ _("Help") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='help') }}">{{ _("Help") }}</a></li>
|
||||||
|
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='about') }}">{{ _("About") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='rules') }}">{{ _("Rules") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='rules') }}">{{ _("Rules") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='policy_and_guidance') }}">{{ _("Policy and Guidance") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='policy_and_guidance') }}">{{ _("Policy and Guidance") }}</a></li>
|
||||||
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='help/api') }}">{{ _("API") }}</a></li>
|
<li class="list-inline-item"><a href="{{ url_for('flatpage', path='help/api') }}">{{ _("API") }}</a></li>
|
||||||
|
Loading…
Reference in New Issue
Block a user