14 lines
329 B
HTML
14 lines
329 B
HTML
<!DOCTYPE html>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
|
|
|
|
<!-- Model is setup in the class StartLesson -->
|
|
<div id="lessonInstructions"></div>
|
|
|
|
<div id="message" class="info" th:utext="${message}"></div>
|
|
<br/>
|
|
|
|
<div th:replace="~{lesson:__'lessons/' + ${lesson.package} + '/html/' + ${lesson.id} + '.html'__}"></div>
|
|
|
|
</html>
|