2018-08-14 10:56:12 -07:00
|
|
|
<template name="InternshipJobs">
|
2018-12-12 11:04:00 -08:00
|
|
|
<div id="internshipJobs" class="textView">
|
|
|
|
|
<h3>Internship Job List</h3>
|
|
|
|
|
<ol>
|
|
|
|
|
{{#each internships}}
|
|
|
|
|
<li><a href="/Internship-Job/{{_id}}">{{name}}</a></li>
|
|
|
|
|
{{/each}}
|
|
|
|
|
</ol>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template name="InternshipJob">
|
|
|
|
|
<div id="internshipJob" class="textView">
|
|
|
|
|
{{{internship.content}}}
|
2018-08-14 10:56:12 -07:00
|
|
|
</div>
|
|
|
|
|
</template>
|