This commit is contained in:
MishaBagger
2023-10-25 09:15:21 +03:00
commit b6c10cc93f
9828 changed files with 1446743 additions and 0 deletions

17
34/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>

1
34/views/footer.pug Normal file
View File

@@ -0,0 +1 @@
<footer><p>MyCorp - Copyright © 2017</p></footer>

11
34/views/layout.pug Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
block title
<meta charset="utf-8" />
</head>
<body>
block content
include footer.pug
</body>
<html>