newsbot-portal/internal/views/layout/withTemplate.templ

18 lines
231 B
Plaintext
Raw Normal View History

2024-05-11 09:56:19 -07:00
package layout
templ WithTemplate() {
<!DOCTYPE html>
<html lang="en">
<head>
2024-05-18 22:37:30 -07:00
@header()
2024-05-11 09:56:19 -07:00
</head>
<body>
2024-05-18 22:37:30 -07:00
@navBar()
2024-05-11 09:56:19 -07:00
<div class="container is-widescreen">
{ children... }
</div>
</body>
2024-05-18 22:37:30 -07:00
@footer()
2024-05-11 09:56:19 -07:00
</html>
}