Skip to content

Commit

Permalink
fixed missing dependency on popper.js for dropdowns and updated Thyme…
Browse files Browse the repository at this point in the history
…leaf fragment expressions
  • Loading branch information
r-follador committed Feb 2, 2024
1 parent 45c81cd commit b0f6f3c
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/templates/activity_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</style>
</head>
<body>
<header th:replace="dashboard.html :: header">
<header th:replace="~{dashboard.html :: header}">
</header>


Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/hidden_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</style>
</head>
<body>
<header th:replace="dashboard.html :: header">
<header th:replace="~{dashboard.html :: header}">
</header>


Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<link href="../css/dashboard.css" rel="stylesheet">
</head>
<body>
<header th:replace="dashboard.html :: header">
<header th:replace="~{dashboard.html :: header}">
</header>

<div class="container-fluid">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/subscribe.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<script src="https://js.stripe.com/v3/"></script>
</head>
<body>
<header th:replace="dashboard.html :: header">
<header th:replace="~{dashboard.html :: header}">
</header>

<div class="container-fluid">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/subscribe2.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<link href="../css/dashboard.css" rel="stylesheet">
</head>
<body>
<header th:replace="dashboard.html :: header">
<header th:replace="~{dashboard.html :: header}">
</header>

<div class="container-fluid">
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/templates/trackview.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title th:text="${trackmetadata.title + ' - CubeTrek'}"></title>
<link rel="icon" type="image/svg" href="../assets/logo.svg">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js "></script>
<link href=" https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css " rel="stylesheet">
<link href="../css/dashboard.css" rel="stylesheet">
Expand Down Expand Up @@ -61,7 +62,7 @@
<div class="btn-group-vertical position-absolute top-0 start-0 p-3" role="group" id="mapstyle">
<input type="radio" class="btn-check" name="btnradio" id="btnradio1" autocomplete="off" checked
onchange="mapstyle('summer')">
<label class="btn btn-outline-danger" for="btnradio1">Summer</label>
<label class="btn btn-outline-danger" for="btnradio1">Map</label>
<input type="radio" class="btn-check" name="btnradio" id="btnradio3" autocomplete="off"
onchange="mapstyle('satellite')">
<label class="btn btn-outline-danger" for="btnradio3">Satellite</label>
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/templates/trackview2d.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title th:text="${trackmetadata.title + ' - CubeTrek'}"></title>
<link rel="icon" type="image/svg" href="../assets/logo.svg">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js "></script>
<link href=" https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css " rel="stylesheet">
<link href="../css/dashboard.css" rel="stylesheet">
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/templates/trackview3dreplay.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title th:text="${trackmetadata.title + ' - CubeTrek'}"></title>
<link rel="icon" type="image/svg" href="../assets/logo.svg">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js "></script>
<link href=" https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css " rel="stylesheet">
<link href="../css/dashboard.css" rel="stylesheet">
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/templates/trekmapper.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<meta name="description" content="">
<link rel="icon" type="image/svg" href="/assets/logo.svg">
<title>CubeTrek - TrekMapper</title>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js "></script>
<link href=" https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css " rel="stylesheet">
<link href="../css/dashboard.css" rel="stylesheet">
Expand All @@ -15,7 +16,7 @@
<script src=" https://cdn.jsdelivr.net/npm/@turf/[email protected]/turf.min.js "></script>
</head>
<body>
<header th:replace="dashboard.html :: header">
<header th:replace="~{dashboard.html :: header}">
</header>

<div class="container-fluid">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/upload.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</style>
</head>
<body>
<header th:replace="dashboard.html :: header">
<header th:replace="~{dashboard.html :: header}">
</header>

<div class="container-fluid">
Expand Down

0 comments on commit b0f6f3c

Please sign in to comment.