Main site structure with first uni quiz

This commit is contained in:
2025-01-10 23:05:02 +01:00
parent e0be650607
commit 72c21d6d81
19 changed files with 1311 additions and 0 deletions

33
templates/main.html Normal file
View File

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</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') }}">
</head>
<body>
<div class="container">
<!-- Header Section -->
<header class="header">
<div class="brand">Computer Science Engineer</div>
<div class="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') }}">Projects</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 Portfolio. All rights reserved. | <a href="#contact">Get in Touch</a>
</footer>
</div>
</body>
</html>