-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_server.txt
More file actions
39 lines (36 loc) · 1.3 KB
/
test_server.txt
File metadata and controls
39 lines (36 loc) · 1.3 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Главная страница</title>
<link rel="stylesheet" href="css/bulma.css"> <!-- Подключаем Bulma CSS -->
</head>
<body>
<div class="container">
<h1 class="title">Добро пожаловать на сайт!</h1>
{{#if user}}
<div class="box">
<h2 class="subtitle">Привет, {{user.username}}!</h2>
<p>Ваш email: {{user.email}}</p>
<a href="/logout" class="button is-danger">Выйти</a>
</div>
{{else}}
<a href="/register" class="button is-primary">Перейти к регистрации</a>
<a href="/login" class="button is-link">Логин</a>
{{/if}}
<h2 class="title">Лента новостей</h2>
{{#if posts.length}}
{{#each posts}}
<div class="box">
<h3 class="title is-5">{{username}}</h3>
<p>{{content}}</p>
<small>Опубликовано: {{created_at}}</small>
</div>
{{/each}}
{{else}}
<p>Пока нет постов.</p>
{{/if}}
</div>
</body>
</html>