Add basic blog and index go template markups

pull/1/head
Nikita Tokarchuk 2 years ago
parent db2efebddf
commit edf7192fac
Signed by: mainnika
GPG Key ID: A595FB7E3E56911C
  1. 6
      frontend/templates/blog.go.tmpl
  2. 6
      frontend/templates/index.go.tmpl
  3. 2
      frontend/templates/templates.go

@ -0,0 +1,6 @@
<!doctype html>
<html lang="en_us">
<body>
</body>
</html>

@ -0,0 +1,6 @@
<!doctype html>
<html lang="en_us">
<body>
</body>
</html>

@ -10,7 +10,9 @@ import (
)
// Static go-templates source
//go:embed blog.go.tmpl
//go:embed error.go.tmpl
//go:embed index.go.tmpl
var content embed.FS
// List of compiled go-templates

Loading…
Cancel
Save