Skip to content

Commit

Permalink
#117 - Modify layout.html & user-list.html ✏️📗:octocat:⬆
Browse files Browse the repository at this point in the history
  • Loading branch information
hendisantika committed Sep 5, 2023
1 parent e17724e commit b6b68e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/main/resources/templates/shared/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
<title layout:title-pattern="$CONTENT_TITLE - $LAYOUT_TITLE">ITAdventure</title>
<meta content="width=device-width, initial-scale=1" name="viewport">

<style th:replace="/shared/style"></style>
<style th:replace="~{/shared/style}"></style>

</head>
<body class="hold-transition sidebar-mini layout-fixed">

<div class="wrapper">

<div th:replace="/shared/header"></div>
<div th:replace="~{/shared/header}"></div>

<div th:replace="/shared/menu"></div>
<div th:replace="~{/shared/menu}"></div>

<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
Expand All @@ -28,13 +28,13 @@
<!-- /.content-wrapper -->


<div th:replace="/shared/footer"></div>
<div th:replace="~{/shared/footer}"></div>

<div layout:fragment="script">

</div>

<div th:replace="/shared/script"></div>
<div th:replace="~{/shared/script}"></div>

</div>

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/user-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ <h3 class="card-title">Bordered Table</h3>
user.findAll = function () {

$.ajax({
url: "http://localhost:1111/api/v1/user",
url: "http://localhost:8080/api/v1/user",
type: "GET",
beforeSend: function (xhr) {
xhr.setRequestHeader("Accept", "application/json");
Expand Down

0 comments on commit b6b68e8

Please sign in to comment.