aboutsummaryrefslogtreecommitdiff
path: root/views/exams.hbs
blob: 5a5955c1799793cf642785995917a44f259cfb68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<main id = 'solutions-main'>
    <div class = 'search container' id = 'solutions-div'>
        <h4 class='search-head'>Search results for "{{query}}"</h4>
        {{# each result}}
            <a href="/questions">
                <section class = 'solutions-card'>
                    <h3 class = 'solutions-title'>{{this.title}}</h3>
                    <p class = 'solutions-time' ><em>Term: </em>{{this.term}} {{this.year}}</p>
                    <p class = 'exam-instr'><em>Instructors: </em>
                        {{this.instructors}}
                    </p>
                    <p class = 'solutions-type'>{{result.type}}</p>
                </section>
            </a>
        {{/each}}

    </div>
</main>