-
Notifications
You must be signed in to change notification settings - Fork 44
/
cooking-classes.php
69 lines (53 loc) · 1.78 KB
/
cooking-classes.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
$page_title = 'Yoko\'s Kitchen';
$nav_home_class = '';
$nav_citations_class = '';
$nav_cooking_class = 'active_page';
?>
<!DOCTYPE html>
<html lang="en">
<?php include 'includes/meta.php' ?>
<body>
<?php include 'includes/header.php' ?>
<main class="courses">
<h2><?php echo $page_title; ?></h2>
<p>Welcome to Yoko's Kitchen!</p>
<h2>Cooking Classes</h2>
<section>
<div class="course-tile">
<figure>
<img src="images/bok-choi.jpg" alt="Bok Choi" />
<figcaption>Bok Choi</figcaption>
</figure>
<div>
<div>
<h3>Japanese Vegetarian</h3>
<h4>Five week course in London</h4>
</div>
<p>A five week introduction to traditional Japanese vegetarian meals, teaching you a selection of rice and noodle dishes.</p>
</div>
</div>
<div class="course-tile">
<figure>
<img src="images/teriyaki.jpg" alt="Teriyaki sauce" />
<figcaption>Teriyaki Sauce</figcaption>
</figure>
<div>
<div>
<h3>Sauces Masterclass</h3>
<h4>One day workshop</h4>
</div>
<p>An intensive one-day course looking at how to create the most delicious sauces for use in a range of Japanese cookery.</p>
</div>
</div>
</section>
<section>
<h2>Request Course Information</h2>
<p>Interesting in taking one of our cooking classes? Let us know which classes and we'll send you some information!</p>
<!-- TODO: course information request form -->
</section>
<cite>© 2011 Yoko's Kitchen (<a href="http://www.htmlandcssbook.com/code-samples/chapter-17/example-with-links.html">Source</a>)</cite>
</main>
<?php include "includes/footer.php" ?>
</body>
</html>