common_head.html 721 B

12345678910111213
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
  3. <head th:fragment="head(title)">
  4. <meta charset="UTF-8">
  5. <title th:text="${title}">MOOCTEST</title>
  6. <!--<title>MOOCTEST</title>-->
  7. <link rel="stylesheet" type="text/css" th:href="@{/vendor/bootstrap/css/bootstrap.min.css}">
  8. <link rel="stylesheet" type="text/css" th:href="@{/fonts/font-awesome-4.7.0/css/font-awesome.min.css}">
  9. <link rel="stylesheet" type="text/css" th:href="@{/fonts/iconic/css/material-design-iconic-font.min.css}">
  10. <link rel="stylesheet" type="text/css" th:href="@{/css/util.css}">
  11. <link rel="stylesheet" type="text/css" th:href="@{/css/main.css}">
  12. </head>
  13. </html>