This commit is contained in:
Volodya
2023-10-25 12:19:00 +03:00
commit f34f0eecf7
17 changed files with 1305 additions and 0 deletions

17
views/contact.pug Normal file
View File

@@ -0,0 +1,17 @@
extends layout.pug
block title
<title>#{title}</title>
block content
<h1>#{title} в Pug</h1>
if emailsVisible
<h3>Электронные адреса</h3>
<ul>
each email in emails
<li>#{email}</li>
</ul>
else
<h3>Электронный адрес отсутствует</h3>
<p>Телефон: #{phone}</p>