{% extends "base.html" %} {% block title %}{{ project.name }} - Devanturas by SimolZimol{% endblock %} {% block description %}{{ project.description }} - Detailed information, features, and documentation{% endblock %} {% block content %}
Projects / {{ project.name }}

{{ project.name }}

{{ project.tagline }}

{{ project.description }}

{% if project.version %}
Version {{ project.version }}
{% endif %} {% if project.status %}
Status {{ project.status }}
{% endif %} {% if project.compatibility %}
Compatibility {{ project.compatibility }}
{% endif %}
{% for link_name, link_url in project.links.items() %} {% if link_name in ['modrinth', 'spigot', 'github'] %} {% if link_name == 'github' %} GitHub {% elif link_name == 'modrinth' %} Modrinth {% elif link_name == 'spigot' %} SpigotMC {% endif %} {% endif %} {% endfor %}
{% if 'minecraft' in project.name.lower() or 'fly' in project.name.lower() %} {% elif 'discord' in project.name.lower() or 'bot' in project.name.lower() %} {% else %} {% endif %}

Overview

{{ project.long_description }}

{% if project.technologies %}

Built With

{% for tech in project.technologies %} {{ tech }} {% endfor %}
{% endif %} {% if project.server_types %}

Compatibility

{% for server_type in project.server_types %}
{{ server_type }}
{% endfor %}
{% endif %}

Features

{% for feature in project.features %}

{{ feature }}

{% endfor %}
{% if project.commands %}

Commands & Permissions

{% for command in project.commands %} {% endfor %}
Command Description Permission
{{ command.command }} {{ command.description }} {{ command.permission }}
{% endif %} {% if project.installation %}

Installation Guide

    {% for step in project.installation %}
  1. {{ step }}
  2. {% endfor %}
{% endif %}

Resources & Support

{% for link_name, link_url in project.links.items() %}
{% if link_name == 'github' %} {% elif link_name == 'wiki' %} {% elif link_name == 'issues' %} {% elif link_name == 'documentation' %} {% elif link_name == 'modrinth' %} {% elif link_name == 'spigot' %} {% elif link_name == 'discord' %} {% else %} {% endif %}

{{ link_name.title().replace('_', ' ') }}

{% if link_name == 'github' %} View source code and contribute to the project {% elif link_name == 'wiki' %} Comprehensive documentation and guides {% elif link_name == 'issues' %} Report bugs and request features {% elif link_name == 'documentation' %} Official project documentation {% elif link_name == 'modrinth' %} Download from Modrinth platform {% elif link_name == 'spigot' %} Download from SpigotMC resources {% elif link_name == 'discord' %} Join the community or access the bot where it is available {% else %} Additional project resources {% endif %}

Visit
{% endfor %}
{% endblock %} {% block extra_scripts %} {% endblock %}