Update: Improved UI and functionality of posts and post-edit pages

This change includes both UI and functionality enhancements in 'posts.html' and 'postEdit.html' within the web templates directory. For posts.html, the caption under the table of posts has been replaced with a paragraph tag for better readability. A more comprehensive redesign has been done on postEdit.html, ensuring a more user-friendly page layout with enhanced post edition capabilities. In addition, minor updates were made to the go.sum and go.mod file as a result of new dependencies and versions required by these changes.
This commit is contained in:
Florian Sylvain
2023-10-31 16:07:45 +01:00
parent 777666a92f
commit c663bcf4a9
4 changed files with 95 additions and 16 deletions
+4 -4
View File
@@ -10,7 +10,7 @@ require (
github.com/go-playground/validator/v10 v10.15.0
github.com/joho/godotenv v1.5.1
go.uber.org/dig v1.17.0
golang.org/x/crypto v0.10.0
golang.org/x/crypto v0.14.0
gorm.io/gorm v1.25.2
)
@@ -40,8 +40,8 @@ require (
github.com/segmentio/asm v1.2.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/stretchr/testify v1.8.4 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/text v0.10.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/text v0.13.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
modernc.org/libc v1.24.1 // indirect
modernc.org/mathutil v1.5.0 // indirect
@@ -53,5 +53,5 @@ require (
github.com/go-chi/chi/v5 v5.0.10
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
golang.org/x/sys v0.10.0 // indirect
golang.org/x/sys v0.13.0 // indirect
)