blob: 4f2637817a03b7e1b79b299e0162484cab920d40 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<header>
<h1>Cheryl's Deli and Bakery</h1>
</header>
<section class="main">
<nav>
<ul>
{% for page in pages %}
<li><a href="/{{page.id}}">{{page.id | capitalize}}</a></li>
{% endfor %}
</ul>
<nav>
<div class="breads">
<h2>Great breads:</h2>
<ul>
{% for bread in breads %}
<li><a href="/bread/{{bread.id}}">{{bread.id | capitalize}}</a></li>
{% endfor %}
</ul>
</div>
</section>
</div>
</body>
</html>
|