30 lines
622 B
HTML
30 lines
622 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-commands.html">Command Melding</a></li>
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if cfg!(feature = "ddd") %}
|
|
<h1>Kingdom Hearts Dream Drop Distance</h1>
|
|
<ul>
|
|
<li><a href="./ddd-abilities.html">Spirit Boards</a></li>
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if cfg!(feature = "kh3") %}
|
|
<h1>Kingdom Hearts III</h1>
|
|
<ul>
|
|
<li><a href="./kh3-recipes.html">Food Simulator</a></li>
|
|
</ul>
|
|
{% endif %}
|
|
{% endblock %}
|