khguide/templates/pages/index.html

37 lines
767 B
HTML
Raw Permalink Normal View History

{% extends "layouts/base.html" %}
{% block title %}Menu{% endblock %}
{% block head %}
{% endblock %}
{% block content %}
{% if cfg!(feature = "bbs") %}
<h1>Kingdom Hearts Birth by Sleep</h1>
<ul>
<li><a href="./bbs/melding.html">Command Melding</a></li>
</ul>
{% endif %}
{% if cfg!(feature = "ddd") %}
<h1>Kingdom Hearts Dream Drop Distance</h1>
<ul>
<li><a href="./ddd/boards.html">Spirit Boards</a></li>
</ul>
{% endif %}
{% if cfg!(feature = "kh3") %}
<h1>Kingdom Hearts III</h1>
<ul>
<li><a href="./kh3/food-sim.html">Food Simulator</a></li>
</ul>
{% endif %}
2025-02-09 13:51:00 +02:00
{% if cfg!(feature = "kh2") %}
<h1>Kingdom Hearts II</h1>
<ul>
<li><a href="./kh2/drops.html">Material Drops</a></li>
</ul>
{% endif %}
{% endblock %}