diff options
author | Georg Pfuetzenreuter | 2022-05-06 11:49:22 +0200 |
---|---|---|
committer | Georg Pfuetzenreuter | 2022-05-06 11:49:22 +0200 |
commit | beb92675071c69b86b5338297822c834ffd548f6 (patch) | |
tree | d81391468881407374f6c16105c5ca0ae61331c2 /src/main/resources/templates/layout.html | |
parent | 6edbc437a1e993f77eeabd458d82d52c77d8e5fa (diff) | |
download | pubsh-web-beb92675071c69b86b5338297822c834ffd548f6.tar.gz pubsh-web-beb92675071c69b86b5338297822c834ffd548f6.tar.bz2 pubsh-web-beb92675071c69b86b5338297822c834ffd548f6.zip |
Init templates
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
Diffstat (limited to 'src/main/resources/templates/layout.html')
-rw-r--r-- | src/main/resources/templates/layout.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/main/resources/templates/layout.html b/src/main/resources/templates/layout.html new file mode 100644 index 0000000..bab0c29 --- /dev/null +++ b/src/main/resources/templates/layout.html @@ -0,0 +1,18 @@ + +<head th:fragment="headerFragment"> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<title>Customer Portal</title> +<link + href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" + rel="stylesheet" + integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" + crossorigin="anonymous"></link> +<link + href="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css" + rel="stylesheet"></link> +</head> + +<div id="pagefoot" th:fragment="footerFragment"> + <p>Document last modified 2017/10/23.</p> + <p>Copyright: Lorem Ipsum</p> +</div>
\ No newline at end of file |