2024-05-11 09:56:19 -07:00
|
|
|
package layout
|
|
|
|
|
2024-07-14 09:06:43 -07:00
|
|
|
import (
|
|
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/components/bulma"
|
|
|
|
bl "git.jamestombleson.com/jtom38/newsbot-portal/components/bulma/layout"
|
|
|
|
"git.jamestombleson.com/jtom38/newsbot-portal/internal/models"
|
|
|
|
)
|
|
|
|
|
|
|
|
templ WithTemplate(meta models.HeaderMetaTags) {
|
2024-05-11 09:56:19 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2024-07-14 09:06:43 -07:00
|
|
|
@header(meta)
|
2024-05-11 09:56:19 -07:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-05-18 22:37:30 -07:00
|
|
|
@navBar()
|
2024-05-19 10:02:34 -07:00
|
|
|
<br/>
|
2024-07-14 09:06:43 -07:00
|
|
|
@bl.Container(bulma.BreakpointDefault) {
|
2024-05-11 09:56:19 -07:00
|
|
|
{ children... }
|
2024-05-26 19:30:04 -07:00
|
|
|
@footer()
|
2024-07-14 09:06:43 -07:00
|
|
|
}
|
2024-05-11 09:56:19 -07:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
}
|