-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a9ae28
commit cf3bda0
Showing
4 changed files
with
122 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
<!DOCTYPE html> | ||
<html lang="uk"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Мій особистий блог</title> | ||
<link rel="stylesheet" href="resources/style/style.css"> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Мій особистий блог</title> | ||
<link rel="stylesheet" href="resources/style/style.css"> | ||
</head> | ||
<body> | ||
|
||
<header> | ||
<h1>Калиновський Валентин<br>Мій Особистий Блог</h1> | ||
</header> | ||
<header> | ||
<h1>Калиновський Валентин<br>Мій Особистий Блог</h1> | ||
</header> | ||
|
||
<nav> | ||
<a href="/">Головна</a> | ||
<nav> | ||
<a href="/">Головна</a> | ||
<!-- <a href="#">Проекти</a>--> | ||
<!-- <a href="#">Документації</a>--> | ||
<a href="/diary">Щоденник</a> | ||
<a href="/diary">Щоденник</a> | ||
<!-- <a href="#">Контакти</a>--> | ||
</nav> | ||
</nav> | ||
|
||
<main> <!-- Про себе --> | ||
<article> | ||
<h2>Про себе</h2> | ||
<p>Програміст</p> | ||
<img src="../resources/images/Me.jpg" alt="Моя фотография" width="300px"> | ||
</article> | ||
</main> | ||
<main> <!-- Про себе --> | ||
<article> | ||
<h2>Про себе</h2> | ||
<p>Програміст</p> | ||
<img src="../resources/images/Me.jpg" alt="Моя фотография" width="300px"> | ||
</article> | ||
</main> | ||
|
||
<main> | ||
{% for metadata in post_contents %} | ||
<article> | ||
<a href="{{ url_for('post', post_id=metadata[0]['name']) }}"> | ||
<h2>{{ metadata[1]['title'] }}</h2> | ||
</a> | ||
<p>{{ metadata[3]['description'] }}</p> | ||
<p>Дата публікації: {{ metadata[2]['datetime'].strftime('%Y-%m-%d %I:%M %p') }}</p> | ||
</article> | ||
{% endfor %} | ||
</main> | ||
<main> | ||
{% for metadata in post_contents %} | ||
<article> | ||
<a href="{{ url_for('post', post_id=metadata[0]['name']) }}"> | ||
<h2>{{ metadata[1]['title'] }}</h2> | ||
</a> | ||
<p>{{ metadata[3]['description'] }}</p> | ||
<p>Дата публікації: {{ metadata[2]['datetime'].strftime('%Y-%m-%d %I:%M %p') }}</p> | ||
</article> | ||
{% endfor %} | ||
</main> | ||
|
||
<footer> | ||
<p>© 2023 Калиновський Валентин</p> | ||
</footer> | ||
<footer> | ||
<p>© 2023 Калиновський Валентин</p> | ||
</footer> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters