From 519af559f94aab1bd1446cc01144cbf2640fcc6a Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Wed, 12 Jun 2024 12:21:11 +0200 Subject: feat: Add wip banner --- scss/main.scss | 14 +++++ templates/base.qtpl | 38 ++++++------ templates/base.qtpl.go | 153 +++++++++---------------------------------------- 3 files changed, 60 insertions(+), 145 deletions(-) diff --git a/scss/main.scss b/scss/main.scss index 26155a6..5500a38 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -21,6 +21,10 @@ $headings-margin-bottom: 0; @import "bootstrap/scss/_grid.scss"; @import "tree.scss"; +// TODO remove once is not needed +$alert-border-radius: 0; +@import "bootstrap/scss/_alert.scss"; + // overwrite to reduce the ammount of css generated by loading all utilities $utilities: ( "order": ( @@ -46,6 +50,16 @@ $utilities: ( none: none, ) ), + "text-align": ( + responsive: true, + property: text-align, + class: text, + values: ( + start: left, + end: right, + center: center, + ) +), ); @import "bootstrap/scss/utilities/_api.scss"; diff --git a/templates/base.qtpl b/templates/base.qtpl index ae9f7a6..9e2e6ac 100644 --- a/templates/base.qtpl +++ b/templates/base.qtpl @@ -39,25 +39,23 @@ Page prints a page implementing Page interface. {% func PageTemplate(p Page) %} - - - - {%= p.Title() %} - - - - - - {%= p.Navbar() %} -
- {%= p.Content() %} -
- - {%= p.Script() %} + + + + {%= p.Title() %} + + + + + + + {%= p.Navbar() %} +
+ {%= p.Content() %} +
+ + {%= p.Script() %} {% endfunc %} - -{% code type BasePage struct {} %} -{% func (p *BasePage) Title() %}Empty{% endfunc %} -{% func (p *BasePage) Body() %}HelloWorld{% endfunc %} -{% func (p *BasePage) Script() %}{% endfunc %} diff --git a/templates/base.qtpl.go b/templates/base.qtpl.go index bc40252..b2356fe 100644 --- a/templates/base.qtpl.go +++ b/templates/base.qtpl.go @@ -84,99 +84,66 @@ func StreamPageTemplate(qw422016 *qt422016.Writer, p Page) { qw422016.N().S(` - - - - `) + <head> + <meta charset="utf-8"> + <link rel="icon" href="data:,"> + <title>`) //line base.qtpl:45 p.StreamTitle(qw422016) //line base.qtpl:45 qw422016.N().S(` - - - - - - `) -//line base.qtpl:51 + + + + + + `) +//line base.qtpl:54 p.StreamNavbar(qw422016) -//line base.qtpl:51 +//line base.qtpl:54 qw422016.N().S(` -
- `) -//line base.qtpl:53 +
+ `) +//line base.qtpl:56 p.StreamContent(qw422016) -//line base.qtpl:53 - qw422016.N().S(` -
- - `) //line base.qtpl:56 + qw422016.N().S(` +
+ + `) +//line base.qtpl:59 p.StreamScript(qw422016) -//line base.qtpl:56 +//line base.qtpl:59 qw422016.N().S(` `) -//line base.qtpl:58 -} - -//line base.qtpl:58 -func WritePageTemplate(qq422016 qtio422016.Writer, p Page) { -//line base.qtpl:58 - qw422016 := qt422016.AcquireWriter(qq422016) -//line base.qtpl:58 - StreamPageTemplate(qw422016, p) -//line base.qtpl:58 - qt422016.ReleaseWriter(qw422016) -//line base.qtpl:58 -} - -//line base.qtpl:58 -func PageTemplate(p Page) string { -//line base.qtpl:58 - qb422016 := qt422016.AcquireByteBuffer() -//line base.qtpl:58 - WritePageTemplate(qb422016, p) -//line base.qtpl:58 - qs422016 := string(qb422016.B) -//line base.qtpl:58 - qt422016.ReleaseByteBuffer(qb422016) -//line base.qtpl:58 - return qs422016 -//line base.qtpl:58 -} - -//line base.qtpl:60 -type BasePage struct{} - -//line base.qtpl:61 -func (p *BasePage) StreamTitle(qw422016 *qt422016.Writer) { -//line base.qtpl:61 - qw422016.N().S(`Empty`) //line base.qtpl:61 } //line base.qtpl:61 -func (p *BasePage) WriteTitle(qq422016 qtio422016.Writer) { +func WritePageTemplate(qq422016 qtio422016.Writer, p Page) { //line base.qtpl:61 qw422016 := qt422016.AcquireWriter(qq422016) //line base.qtpl:61 - p.StreamTitle(qw422016) + StreamPageTemplate(qw422016, p) //line base.qtpl:61 qt422016.ReleaseWriter(qw422016) //line base.qtpl:61 } //line base.qtpl:61 -func (p *BasePage) Title() string { +func PageTemplate(p Page) string { //line base.qtpl:61 qb422016 := qt422016.AcquireByteBuffer() //line base.qtpl:61 - p.WriteTitle(qb422016) + WritePageTemplate(qb422016, p) //line base.qtpl:61 qs422016 := string(qb422016.B) //line base.qtpl:61 @@ -185,67 +152,3 @@ func (p *BasePage) Title() string { return qs422016 //line base.qtpl:61 } - -//line base.qtpl:62 -func (p *BasePage) StreamBody(qw422016 *qt422016.Writer) { -//line base.qtpl:62 - qw422016.N().S(`HelloWorld`) -//line base.qtpl:62 -} - -//line base.qtpl:62 -func (p *BasePage) WriteBody(qq422016 qtio422016.Writer) { -//line base.qtpl:62 - qw422016 := qt422016.AcquireWriter(qq422016) -//line base.qtpl:62 - p.StreamBody(qw422016) -//line base.qtpl:62 - qt422016.ReleaseWriter(qw422016) -//line base.qtpl:62 -} - -//line base.qtpl:62 -func (p *BasePage) Body() string { -//line base.qtpl:62 - qb422016 := qt422016.AcquireByteBuffer() -//line base.qtpl:62 - p.WriteBody(qb422016) -//line base.qtpl:62 - qs422016 := string(qb422016.B) -//line base.qtpl:62 - qt422016.ReleaseByteBuffer(qb422016) -//line base.qtpl:62 - return qs422016 -//line base.qtpl:62 -} - -//line base.qtpl:63 -func (p *BasePage) StreamScript(qw422016 *qt422016.Writer) { -//line base.qtpl:63 -} - -//line base.qtpl:63 -func (p *BasePage) WriteScript(qq422016 qtio422016.Writer) { -//line base.qtpl:63 - qw422016 := qt422016.AcquireWriter(qq422016) -//line base.qtpl:63 - p.StreamScript(qw422016) -//line base.qtpl:63 - qt422016.ReleaseWriter(qw422016) -//line base.qtpl:63 -} - -//line base.qtpl:63 -func (p *BasePage) Script() string { -//line base.qtpl:63 - qb422016 := qt422016.AcquireByteBuffer() -//line base.qtpl:63 - p.WriteScript(qb422016) -//line base.qtpl:63 - qs422016 := string(qb422016.B) -//line base.qtpl:63 - qt422016.ReleaseByteBuffer(qb422016) -//line base.qtpl:63 - return qs422016 -//line base.qtpl:63 -} -- cgit v1.2.3