1
0
Fork 0

Liquor templates

This commit is contained in:
Gregory Eremin 2013-12-15 02:20:57 +07:00
parent bcc555b585
commit f4d39d98cb
No known key found for this signature in database
GPG Key ID: 5EFA427EEC26E86C
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Customers List</title>
</head>
<body>
{% for customer in: customers do: %}
<dl>
<dt>Name:</dt>
<dd>{{ customer.name }}</dd>
<dt>Age:</dt>
<dd>{{ customer.age }}</dd>
<dt>Address:</dt>
<dd>
{{ customer.zip }}
{{ customer.country }}
{{ customer.city }}
{{ customer.address }}
</dd>
<dt>Employer:</dt>
<dd>{{ customer.employer }}</dd>
</dl>
{% end for %}
</body>
</html>

View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>{{ window_title }}</title>
</head>
<body>
<h1>Hello, {{ username }}!</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id
est laborum.
</p>
</body>
</html>