-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFramedLicensePlate.html
25 lines (24 loc) · 1.25 KB
/
FramedLicensePlate.html
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
<template>
<require from="./css/general.css"></require>
<require from="./FramedLicensePlate.css"></require>
<require from="./TopOfLicensePlateFrame"></require>
<require from="./LicensePlateAnswerEditorFreeEntry"></require>
<require from="./AnswersPanel"></require>
<require from="./CurrentGameControls"></require>
<div class="license-plate-frame">
<div class="top-of-license-frame-container" >
<top-of-license-plate-frame current_game.bind="current_game" ></top-of-license-plate-frame>
</div>
<div class="license-plate-frame-interior">
<div if.bind="!answers_panel_is_open">
<license-plate-answer-editor-free-entry settings.bind="settings" current_game.bind="current_game" hint.bind="hint" ></license-plate-answer-editor-free-entry>
</div>
<div if.bind="answers_panel_is_open" >
<answers-panel puzzle_answers.bind="puzzle_answers"></answers-panel>
</div>
</div>
<div class="bottom-of-license-frame-container" >
<current-game-controls if.bind="current_game" elapsed_seconds.bind="elapsed_seconds" answers_panel_is_open.bind="answers_panel_is_open" ></current-game-controls>
</div>
</div>
</template>