25 lines
724 B
Plaintext
25 lines
724 B
Plaintext
{% extends "../templates/basic.njk" %}
|
|
|
|
{% block head %}
|
|
<title>DDStats - Changelogs</title>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<main class="flex-container">
|
|
<div class="long-text">
|
|
<h1>Changelogs!</h1>
|
|
|
|
<h2>v0.1.0 - Late November 2021</h2>
|
|
<p>
|
|
Initial release! Includes functionality such as:
|
|
<ul>
|
|
<li>Searching for maps and players.</li>
|
|
<li>Server status page.</li>
|
|
<li>Lazy-loading images.</li>
|
|
<li>Leaderboards.</li>
|
|
<li>Public API (No reference yet!)</li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
</main>
|
|
{% endblock %} |