Files
Praktika4/task32/views/contact.pug
kogleee 3dbd9654c2 final
2023-11-08 13:17:48 +03:00

21 lines
389 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>#{title}</title>
<meta charset="utf-8" />
</head>
<body>
h1 #{title} в Pug
if emailsVisible
h3 Электронные адреса
ul
each email in emails
li=email
else
h3 Электроннный адрес отсутствует
p Телефон: #{phone}
</body>
<html>