Initial Commit, kinda working

This commit is contained in:
Pablu23
2024-02-20 23:46:07 +01:00
commit c67a491510
4 changed files with 210 additions and 0 deletions

27
test.html Normal file
View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div.scroll-container {
background-color: #333;
overflow: auto;
padding: 10px;
display: block;
margin-left: auto;
margin-right: auto;
width: 40%;
}
</style>
</head>
<body>
<div class="scroll-container">
{{range .Images}}
<img src="{{.Path}}" alt="img_{{.Index}}"/>
{{end}}
</div>
</body>
</html>