aboutsummaryrefslogtreecommitdiff
path: root/templates/base.qtpl.go
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2024-10-05 16:59:10 +0200
committerGabriel A. Giovanini <mail@gabrielgio.me>2024-10-05 16:59:10 +0200
commit836c0cc75c2f28cccff5892c1357873c1a29945a (patch)
tree61e49efa105044863008a3599216f2be4d559c4f /templates/base.qtpl.go
parent6e5062488fc3ecbf37c11e7d111bfe6ea3b5284d (diff)
downloadcerrado-836c0cc75c2f28cccff5892c1357873c1a29945a.tar.gz
cerrado-836c0cc75c2f28cccff5892c1357873c1a29945a.tar.bz2
cerrado-836c0cc75c2f28cccff5892c1357873c1a29945a.zip
ref: Make the warning less disruptivev0.0.15
Now the project is getting into a better shape I made the warning a less disruptive.
Diffstat (limited to 'templates/base.qtpl.go')
-rw-r--r--templates/base.qtpl.go41
1 files changed, 19 insertions, 22 deletions
diff --git a/templates/base.qtpl.go b/templates/base.qtpl.go
index 51b2b8b..f8ff91f 100644
--- a/templates/base.qtpl.go
+++ b/templates/base.qtpl.go
@@ -101,54 +101,51 @@ func StreamPageTemplate(qw422016 *qt422016.Writer, p Page) {
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
- <div class="alert alert-warning text-center" role="alert">
- This project is under development, things may be broken or incomplete.
- </div>
`)
-//line templates/base.qtpl:54
+//line templates/base.qtpl:51
p.StreamNavbar(qw422016)
-//line templates/base.qtpl:54
+//line templates/base.qtpl:51
qw422016.N().S(`
<div class="container">
`)
-//line templates/base.qtpl:56
+//line templates/base.qtpl:53
p.StreamContent(qw422016)
-//line templates/base.qtpl:56
+//line templates/base.qtpl:53
qw422016.N().S(`
</div>
</body>
`)
-//line templates/base.qtpl:59
+//line templates/base.qtpl:56
p.StreamScript(qw422016)
-//line templates/base.qtpl:59
+//line templates/base.qtpl:56
qw422016.N().S(`
</html>
`)
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
}
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
func WritePageTemplate(qq422016 qtio422016.Writer, p Page) {
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
qw422016 := qt422016.AcquireWriter(qq422016)
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
StreamPageTemplate(qw422016, p)
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
qt422016.ReleaseWriter(qw422016)
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
}
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
func PageTemplate(p Page) string {
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
qb422016 := qt422016.AcquireByteBuffer()
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
WritePageTemplate(qb422016, p)
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
qs422016 := string(qb422016.B)
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
qt422016.ReleaseByteBuffer(qb422016)
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
return qs422016
-//line templates/base.qtpl:61
+//line templates/base.qtpl:58
}