-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauthors.html
More file actions
59 lines (52 loc) · 2.24 KB
/
authors.html
File metadata and controls
59 lines (52 loc) · 2.24 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TimeKeeper - Авторы</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./assets/logo.png">
</head>
<body>
<nav>
<div class="logo">
<img src="./assets/logo.png" alt="TimeKeeper Logo" width="50" id="logo-img">
<h1>TimeKeeper</h1>
</div>
<ul>
<li><a href="screenshots.html">Скриншоты</a></li>
<li><a href="download.html">Скачать</a></li>
<li><a href="authors.html">Авторы</a></li>
<li><a href="https://t.me/TimeKeeperSoft">Telegram</a></li>
</ul>
</nav>
<div class="container">
<ul>
<li><b>Михаил Краснов</b> (<a href="https://github.com/mskrasnov">GitHub</a>) - автор идеи, реализация
программы
и этого сайта;</li>
<li><b>Максим Марушин</b> - тестирование, code review;</li>
<li><b>Данила Макаров</b> - дизайн, тестирование.</li>
</ul>
<p>TimeKeeper является opensource ПО. Это значит, что каждый может вносить изменения в исходный код нашей
программы.
Было бы неплохо, если бы эти изменения синхронизировались с <a
href="https://github.com/mskrasnov/TimeKeeper">основной кодовой базой</a>.</p>
</div>
<footer>
<p>Copyright (C) 2025 Michail Krasnov</p>
<p>
<a href="https://t.me/cov_id111">Telegram</a> |
<a href="https://github.com/mskrasnov/TimeKeeper">GitHub</a> |
<a href="https://crates.io/TimeKeeper">crates.io</a> |
<a href="https://flathub.org/">flathub.org</a>
</p>
</footer>
<script>
const logoImg = document.getElementById('logo-img');
logoImg.addEventListener('click', () => {
window.location.href = 'index.html';
});
</script>
</body>
</html>