Files
Personal-Website-Project/templates/main.html

35 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Máté Gosztolya">
<title>Matthew's website</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
<link rel="shortcut icon" href="{{ url_for('static', filename='images/home/logo.jpg') }}" type="image/x-icon">
</head>
<body>
<div class="container">
<header class="header">
<div class="brand">Computer Science Engineer</div>
<div class="title-name">Máté Gosztolya's personal website</div>
<nav>
<a href="{{ url_for('home') }}">Home</a>
<a href="{{ url_for('git') }}">Git</a>
<a href="{{ url_for('projects') }}">Posts</a>
<a href="{{ url_for('uni') }}">UNI</a>
<a href="{{ url_for('about') }}">About</a>
</nav>
</header>
{% block content %}{% endblock %}
<footer class="footer">
© 2025 Máté Gosztolya's personal website. All rights reserved. | <a href="{{ url_for('about') }}">Get in Touch</a>
</footer>
</div>
</body>
</html>