Mustache Courses
<!DOCTYPE html>
<html>
<head>
<title>Courses: {{department_name}}</title>
<link rel="stylesheet" href="site.css" type="text/css"/>
</head>
<body>
<h1>Faculty of Arts & Sciences</h1>
<p><a href="mustache-dept.php">Return to Department List</a></p>
<h2>{{department_name}}</h2>
<table cellspacing="0" cellpadding="0">
{{#courses}}
<tr>
<td class="abbrev">{{course_group_long}} {{num_int}}{{num_char}}</td>
<td class="long">
<strong>{{title}}</strong>
<br/>
<span class="faculty">{{faculty_text}}</span>
<p class="description">
{{description}}
</p>
</td>
</tr>
{{/courses}}
</table>
</body>
</html>