fix: view templ error
Docker Build and Push / build-and-push (push) Has been cancelled

This commit is contained in:
2026-01-15 00:40:39 +07:00
parent 8037a91794
commit 9b55fb9847
12 changed files with 32 additions and 32 deletions
+5 -5
View File
@@ -2,7 +2,7 @@ package layout
import "github.com/fossyy/filekeeper/types"
templ Base(title string){
templ Base(title string) {
<!DOCTYPE html>
<html lang="en">
<head>
@@ -13,7 +13,7 @@ templ Base(title string){
<meta name="author" content="Filekeeper" />
<link href="/public/output.css" rel="stylesheet"/>
<title>{ title }</title>
<script src="https://unpkg.com/htmx.org@1.9.12"></script>
<script src="https://unpkg.com/htmx.org@2.0.8"></script>
</head>
<body>
@modal()
@@ -26,7 +26,7 @@ templ Base(title string){
</html>
}
templ BaseAuth(title string){
templ BaseAuth(title string) {
<!DOCTYPE html>
<html lang="en">
<head>
@@ -109,7 +109,7 @@ templ MainScript() {
</script>
}
templ modalScript(){
templ modalScript() {
<script type="text/javascript">
window.modalContainer = document.getElementById('modalContainer');
window.closeModalBtn = document.getElementById('closeModal');
@@ -215,7 +215,7 @@ templ Footer() {
Privacy
</a>
</nav>
<p class="text-sm text-gray-500">© 2024 Filekeeper. All rights reserved.</p>
<p class="text-sm text-gray-500">© 2026 Filekeeper. All rights reserved.</p>
</div>
</footer>
}