-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlecture.html
More file actions
60 lines (55 loc) · 2.58 KB
/
Copy pathlecture.html
File metadata and controls
60 lines (55 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lectures — Evgenii Pakhomov</title>
<meta name="description" content="Lecture details">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Navigation -->
<nav class="nav">
<div class="nav__inner">
<a href="index.html" class="nav__logo">Evgenii Pakhomov</a>
<ul class="nav__links" id="navLinks">
<li><a href="index.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="lectures.html" class="active">Lectures</a></li>
<li><a href="https://github.com/pakhomovee" target="_blank" rel="noopener">GitHub</a></li>
</ul>
<button class="nav__toggle" id="navToggle" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
<!-- Lecture Source Hero -->
<header class="project-hero" id="lectureHero">
<!-- Filled by JS -->
</header>
<!-- Lecture Table -->
<section class="project-content">
<div class="lecture-table-wrapper" id="lectureTable"></div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer__inner">
<span class="footer__text">© 2026 Evgenii Pakhomov</span>
<div class="footer__links">
<a href="https://github.com/pakhomovee" target="_blank" rel="noopener" aria-label="GitHub">
<svg viewBox="0 0 24 24" fill="currentColor">
<path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"/>
</svg>
</a>
</div>
</div>
</footer>
<script src="js/lectures.js"></script>
<script src="js/lecture-page.js"></script>
</body>
</html>