Teaching_Assistant_Assistant/src/main/resources/templates/index.html

37 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org" th:replace="~{layouts/basic_page :: layout (~{::title}, ~{::#content}, ~{::#sidebar})}">
<head>
<title>Homepage</title>
</head>
<body>
<div id="content">
<h1>Teaching Assistant Assistant</h1>
<hr>
<p>
Welcome to the Teaching Assistant Assistant. To find the courses in this application please follow the link to
<a th:href="@{/courses}">courses</a>.
</p>
<p>
This application makes it easy to sift through lots of student groups that are usually handled manually in some
spreadsheet. By integrating all data into one web application it is possible to access the information you need
faster, and make coordinated changes without fear of introducing inconsistencies or errors.
</p>
</div>
<div id="sidebar">
<div class="sidebar_block">
This is an example sidebar block.
</div>
<div id="generate_courses_block" class="sidebar_block">
<a href="/courses/generate">Click here to generate test data.</a>
</div>
<div class="sidebar_block">
Another sidebar block with a lot more text in it, so that the text should properly wrap to the next lines if needed.
</div>
</div>
</body>
</html>