Files
website/templates/base.html
SimolZimol 97000b3932 new file: static/android-chrome-192x192.png
new file:   static/android-chrome-512x512.png
	new file:   static/apple-touch-icon.png
	new file:   static/favicon-16x16.png
	new file:   static/favicon-32x32.png
	new file:   static/favicon.ico
	new file:   static/site.webmanifest
	modified:   templates/base.html
2025-10-28 21:37:02 +01:00

79 lines
3.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Devanturas by SimolZimol - Professional Minecraft & Discord Development{% endblock %}</title>
<meta name="description" content="{% block description %}Devanturas - Professional Minecraft Plugin Development and Discord Bot Programming by SimolZimol{% endblock %}">
<!-- Favicons -->
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16x16.png') }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon-32x32.png') }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='apple-touch-icon.png') }}">
<link rel="manifest" href="{{ url_for('static', filename='site.webmanifest') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
{% block extra_head %}{% endblock %}
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<a href="{{ url_for('home') }}">
<h2>Devanturas</h2>
<span>by SimolZimol</span>
</a>
</div>
<ul class="nav-links">
<li><a href="{{ url_for('home') }}" class="{% if request.endpoint == 'home' %}active{% endif %}">Home</a></li>
<li><a href="{{ url_for('projects') }}" class="{% if request.endpoint == 'projects' %}active{% endif %}">Projects</a></li>
<li><a href="{{ url_for('minecraft') }}" class="{% if request.endpoint == 'minecraft' %}active{% endif %}">Minecraft</a></li>
<li><a href="{{ url_for('about') }}" class="{% if request.endpoint == 'about' %}active{% endif %}">About</a></li>
<li><a href="{{ url_for('contact') }}" class="{% if request.endpoint == 'contact' %}active{% endif %}">Contact</a></li>
</ul>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>
<!-- Main Content -->
<main>
{% block content %}{% endblock %}
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-text">
<h3>Devanturas</h3>
<p>Professional Minecraft & Discord Development by SimolZimol</p>
</div>
<div class="footer-links">
<a href="https://github.com/SimolZimol/" target="_blank" title="GitHub">
<i class="fab fa-github"></i>
</a>
<a href="https://discordapp.com/users/253922739709018114" target="_blank" title="Discord">
<i class="fab fa-discord"></i>
</a>
<a href="https://modrinth.com/plugin/fly-simolzimol/" target="_blank" title="Modrinth">
<i class="fas fa-cube"></i>
</a>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2025 Devanturas by SimolZimol. All rights reserved.</p>
</div>
</div>
</footer>
<script src="{{ url_for('static', filename='js/script.js') }}"></script>
{% block extra_scripts %}{% endblock %}
</body>
</html>