37 lines
767 B
HTML
37 lines
767 B
HTML
{% 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 %}
|
|
|
|
{% if cfg!(feature = "kh2") %}
|
|
<h1>Kingdom Hearts II</h1>
|
|
<ul>
|
|
<li><a href="./kh2/drops.html">Material Drops</a></li>
|
|
</ul>
|
|
{% endif %}
|
|
{% endblock %}
|