aboutsummaryrefslogtreecommitdiff
path: root/juick-spring-www/src/main/webapp/WEB-INF/templates/layout/mainLayout.html
blob: c07886b66af457991af768e3c22538804b3a763e (plain) (blame)
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
26
27
28
29
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
      xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"/>

    <link rel="stylesheet" href="/style.css" th:href="@{/style.css}"/>

    <script type="text/javascript" src="/scripts.js" th:href="@{/scripts.js}"></script>

    <title layout:title-pattern="$LAYOUT_TITLE - $CONTENT_TITLE">Juick.com</title>
    <link rel="icon" href="//i.juick.com/favicon.png" th:href="@{/favicon.png}"/>
    <!--[if lt IE 9 & (!IEMobile 7)]>
    <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
    <![endif]-->
</head>
<body id="body">
    <div layout:replace="~{layout/partial/navigation}">Navigation block</div>
    <section id="content">
        <p layout:fragment="content">Main content</p>
    </section>
    <aside id="column">
        <p layout:fragment="column">Side column</p>
    </aside>
    <footer layout:replace="~{layout/partial/footer}">Footer</footer>
</body>
</html>