new file: Dockerfile new file: README.md new file: app.py new file: index.html new file: projekte des/PROJECT_DESCRIPTION.txt new file: projekte des/WEBSITE_DESCRIPTION.md new file: projekte des/website_project_description_en.txt new file: requirements.txt new file: script.js new file: static/css/styles.css new file: static/js/script.js new file: styles.css new file: templates/about.html new file: templates/base.html new file: templates/contact.html new file: templates/index.html new file: templates/minecraft.html new file: templates/project_detail.html new file: templates/projects.html
288 lines
12 KiB
HTML
288 lines
12 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Minecraft Development - Devanturas by SimolZimol{% endblock %}
|
|
{% block description %}Professional Minecraft plugin development services and projects by SimolZimol{% endblock %}
|
|
|
|
{% block content %}
|
|
<!-- Minecraft Hero -->
|
|
<section class="minecraft-hero">
|
|
<div class="container">
|
|
<div class="minecraft-hero-content">
|
|
<div class="minecraft-icon">
|
|
<i class="fas fa-cube"></i>
|
|
</div>
|
|
<h1>Minecraft Development</h1>
|
|
<p>Professional plugin development for Spigot, Paper, and Bukkit servers</p>
|
|
<div class="minecraft-stats">
|
|
<div class="stat">
|
|
<span class="stat-number">{{ info.experience }}</span>
|
|
<span class="stat-label">Experience</span>
|
|
</div>
|
|
<div class="stat">
|
|
<span class="stat-number">{{ projects|length }}</span>
|
|
<span class="stat-label">Active Projects</span>
|
|
</div>
|
|
<div class="stat">
|
|
<span class="stat-number">1.15-1.21</span>
|
|
<span class="stat-label">MC Versions</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Minecraft Projects -->
|
|
<section class="minecraft-projects">
|
|
<div class="container">
|
|
<h2>Minecraft Projects</h2>
|
|
<div class="projects-grid">
|
|
{% for project in projects %}
|
|
<div class="minecraft-project-card">
|
|
<div class="project-header">
|
|
<div class="project-icon">
|
|
<i class="fas fa-paper-plane"></i>
|
|
</div>
|
|
<div class="project-info">
|
|
<h3>{{ project.name }}</h3>
|
|
<p>{{ project.description }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="project-details">
|
|
<div class="detail-row">
|
|
<span class="detail-label">Version:</span>
|
|
<span class="detail-value">{{ project.version }}</span>
|
|
</div>
|
|
<div class="detail-row">
|
|
<span class="detail-label">MC Versions:</span>
|
|
<span class="detail-value">{{ project.supported_versions }}</span>
|
|
</div>
|
|
<div class="detail-row">
|
|
<span class="detail-label">Status:</span>
|
|
<span class="detail-value status-active">{{ project.downloads }}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="project-actions">
|
|
<a href="{{ project.url }}" class="btn btn-primary">View Details</a>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Services Section -->
|
|
<section class="minecraft-services">
|
|
<div class="container">
|
|
<h2>Development Services</h2>
|
|
<div class="services-grid">
|
|
<div class="service-card">
|
|
<div class="service-icon">
|
|
<i class="fas fa-plug"></i>
|
|
</div>
|
|
<h3>Custom Plugin Development</h3>
|
|
<p>Tailored Minecraft plugins built to your exact specifications with modern best practices and optimized performance.</p>
|
|
<ul>
|
|
<li>Custom commands and features</li>
|
|
<li>Database integration</li>
|
|
<li>Permission system integration</li>
|
|
<li>Configuration management</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">
|
|
<i class="fas fa-cogs"></i>
|
|
</div>
|
|
<h3>Server Optimization</h3>
|
|
<p>Performance analysis and optimization of existing plugins and server configurations for better gameplay experience.</p>
|
|
<ul>
|
|
<li>Performance profiling</li>
|
|
<li>Memory optimization</li>
|
|
<li>Lag reduction techniques</li>
|
|
<li>Server architecture advice</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="service-card">
|
|
<div class="service-icon">
|
|
<i class="fas fa-tools"></i>
|
|
</div>
|
|
<h3>Plugin Maintenance</h3>
|
|
<p>Ongoing support, updates, and bug fixes for existing plugins to ensure compatibility with latest Minecraft versions.</p>
|
|
<ul>
|
|
<li>Version updates</li>
|
|
<li>Bug fixes</li>
|
|
<li>Feature additions</li>
|
|
<li>Technical support</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Technical Expertise -->
|
|
<section class="minecraft-expertise">
|
|
<div class="container">
|
|
<h2>Technical Expertise</h2>
|
|
<div class="expertise-content">
|
|
<div class="expertise-main">
|
|
<h3>Specializations</h3>
|
|
<div class="specialties-grid">
|
|
{% for specialty in info.specialties %}
|
|
<div class="specialty-item">
|
|
<i class="fas fa-check-circle"></i>
|
|
<span>{{ specialty }}</span>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<h3>Supported Platforms</h3>
|
|
<div class="platforms-grid">
|
|
{% for server_type in info.server_types %}
|
|
<div class="platform-card">
|
|
<div class="platform-icon">
|
|
{% if server_type == 'Spigot' %}
|
|
<i class="fas fa-server"></i>
|
|
{% elif server_type == 'Paper' %}
|
|
<i class="fas fa-paper-plane"></i>
|
|
{% elif server_type == 'Bukkit' %}
|
|
<i class="fas fa-cube"></i>
|
|
{% endif %}
|
|
</div>
|
|
<h4>{{ server_type }}</h4>
|
|
<p>Full compatibility and optimization</p>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="expertise-sidebar">
|
|
<div class="api-knowledge">
|
|
<h3>API Knowledge</h3>
|
|
<ul>
|
|
{% for api in info.preferred_apis %}
|
|
<li>
|
|
<i class="fas fa-code"></i>
|
|
{{ api }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="version-support">
|
|
<h3>Version Support</h3>
|
|
<div class="version-range">
|
|
<div class="version-item">
|
|
<span class="version-label">Legacy Support</span>
|
|
<span class="version-value">1.15+</span>
|
|
</div>
|
|
<div class="version-item">
|
|
<span class="version-label">Current Support</span>
|
|
<span class="version-value">1.21</span>
|
|
</div>
|
|
<div class="version-item">
|
|
<span class="version-label">Future Ready</span>
|
|
<span class="version-value">Upcoming versions</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Development Process -->
|
|
<section class="development-process">
|
|
<div class="container">
|
|
<h2>Development Process</h2>
|
|
<div class="process-steps">
|
|
<div class="process-step">
|
|
<div class="step-number">1</div>
|
|
<div class="step-content">
|
|
<h3>Requirements Analysis</h3>
|
|
<p>Understanding your server's needs and defining project scope with detailed specifications.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="process-step">
|
|
<div class="step-number">2</div>
|
|
<div class="step-content">
|
|
<h3>Development & Testing</h3>
|
|
<p>Writing clean, efficient code following best practices with comprehensive testing on multiple server versions.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="process-step">
|
|
<div class="step-number">3</div>
|
|
<div class="step-content">
|
|
<h3>Deployment & Support</h3>
|
|
<p>Smooth deployment to your server with ongoing support and maintenance as needed.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Community Resources -->
|
|
<section class="minecraft-resources">
|
|
<div class="container">
|
|
<h2>Resources & Downloads</h2>
|
|
<div class="resources-grid">
|
|
<div class="resource-card">
|
|
<div class="resource-icon">
|
|
<i class="fas fa-cube"></i>
|
|
</div>
|
|
<h3>Modrinth</h3>
|
|
<p>Download my plugins from the modern Minecraft modding platform</p>
|
|
<a href="https://modrinth.com/plugin/fly-simolzimol/" target="_blank" class="resource-link">
|
|
Visit Modrinth <i class="fas fa-external-link-alt"></i>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="resource-card">
|
|
<div class="resource-icon">
|
|
<i class="fas fa-plug"></i>
|
|
</div>
|
|
<h3>SpigotMC</h3>
|
|
<p>Find my plugins on the largest Minecraft server resource platform</p>
|
|
<a href="https://www.spigotmc.org/resources/fly.83164/" target="_blank" class="resource-link">
|
|
Visit SpigotMC <i class="fas fa-external-link-alt"></i>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="resource-card">
|
|
<div class="resource-icon">
|
|
<i class="fab fa-github"></i>
|
|
</div>
|
|
<h3>GitHub</h3>
|
|
<p>Access source code, documentation, and contribute to open source projects</p>
|
|
<a href="https://github.com/SimolZimol/" target="_blank" class="resource-link">
|
|
Visit GitHub <i class="fas fa-external-link-alt"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Call to Action -->
|
|
<section class="minecraft-cta">
|
|
<div class="container">
|
|
<div class="cta-content">
|
|
<div class="cta-text">
|
|
<h2>Ready to Enhance Your Server?</h2>
|
|
<p>Let's discuss your Minecraft plugin development needs and bring your server vision to life.</p>
|
|
</div>
|
|
<div class="cta-actions">
|
|
<a href="{{ url_for('contact') }}" class="btn btn-primary">
|
|
<i class="fas fa-comments"></i> Start Discussion
|
|
</a>
|
|
<a href="{{ url_for('projects') }}" class="btn btn-secondary">
|
|
<i class="fas fa-eye"></i> View All Projects
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %} |