Mustache Courses
<!DOCTYPE html>
<html lang="en">
<head>
<title>Harvard Extension Courses in {{ department_name }}</title>
<link rel="stylesheet" href="styles/site.css" />
<meta charset="UTF-8" />
</head>
<body>
<h1>Harvard Extension Courses in {{ department_name }}</h1>
<p><a href="mustache-dept.php">Return to Department List</a></p>
<h2>{{department_name}}</h2>
<div>
{{#courses}}
<section class="course">
<h2 class="abbrev">{{ short_title }}</h2>
<div>
<p class="term">{{ term }} {{ academic_year_display }}</p>
<p class="title">{{ title }}</p>
<p class="faculty">{{ faculty_description }}</p>
<p class="description">{{{ description }}}</p>
</div>
</section>
{{/courses}}
</div>
<footer>
<p><a href="./">PHP/mysql example list</a></p>
<p>This is a learning example to demonstrate PHP and mysql for the courses CSCI E-12 and CSCI S-12 taught by David
Heitmeyer. <br />
The real <a href="https://courses.dce.harvard.edu/">Harvard Extension School course search</a> is at: <a
href="https://courses.dce.harvard.edu/">courses.dce.harvard.edu</a>
</p>
</footer>
</body>
</html>