-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy patheval.html
More file actions
43 lines (35 loc) · 1.48 KB
/
Copy patheval.html
File metadata and controls
43 lines (35 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link href="../lib/metro.css" rel="stylesheet">
<title>Test Eval - Metro UI :: Popular HTML, CSS and JS library</title>
</head>
<body class="cloak">
<nav data-role="appbar" class="border-bottom bd-default">
<span class="app-bar-item">Eval</span>
<div class="app-bar-item-static no-hover">
<input type="checkbox" data-role="theme-switcher"/>
</div>
</nav>
<div class="container">
<!-- Вывод текущего года -->
<div data-role="eval">{{ new Date().getFullYear() }}</div>
<!-- Вычисление математического выражения -->
<div data-role="eval">{{ 2 + 2 * 5 }}</div>
<!-- Использование условий -->
<div data-role="eval">{{ new Date().getHours() < 12 ? 'Доброе утро' : 'Добрый день' }}</div>
<!-- Включение логирования ошибок -->
<div data-role="eval" data-log-errors="true">{{ someNonExistentVariable }}</div>
<!-- Обработка дочерних узлов -->
<div data-role="eval" data-process-child="true">
<div>Сегодня {{ new Date().toLocaleDateString() }}</div>
<div>Время {{ new Date().toLocaleTimeString() }}</div>
</div>
</div>
<script src="../lib/metro.js"></script>
<script>
</script>
</body>
</html>