cerrado @ 836c0cc75c2f28cccff5892c1357873c1a29945a

ref: Make the warning less disruptive

Now the project is getting into a better shape I made the warning a less
disruptive.
  1diff --git a/templates/base.qtpl b/templates/base.qtpl
  2index 9e2e6ac85aa996f80b31e8c4fc3170fe357dbcd0..7063829b49a5aadc65c985dab3910c976e294224 100644
  3--- a/templates/base.qtpl
  4+++ b/templates/base.qtpl
  5@@ -48,9 +48,6 @@     <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
  6     <meta name="viewport" content="width=device-width, initial-scale=1" />
  7   </head>
  8   <body>
  9-    <div class="alert alert-warning text-center" role="alert">
 10-        This project is under development, things may be broken or incomplete.
 11-    </div>
 12     {%= p.Navbar() %}
 13     <div class="container">
 14       {%= p.Content() %}
 15diff --git a/templates/base.qtpl.go b/templates/base.qtpl.go
 16index 51b2b8bac5c49299eb9ec03633e03a202a87bc0d..f8ff91f23386053a256a62cf482aaaaa4f68d5f7 100644
 17--- a/templates/base.qtpl.go
 18+++ b/templates/base.qtpl.go
 19@@ -101,54 +101,51 @@     <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
 20     <meta name="viewport" content="width=device-width, initial-scale=1" />
 21   </head>
 22   <body>
 23-    <div class="alert alert-warning text-center" role="alert">
 24-        This project is under development, things may be broken or incomplete.
 25-    </div>
 26     `)
 27-//line templates/base.qtpl:54
 28+//line templates/base.qtpl:51
 29 	p.StreamNavbar(qw422016)
 30-//line templates/base.qtpl:54
 31+//line templates/base.qtpl:51
 32 	qw422016.N().S(`
 33     <div class="container">
 34       `)
 35-//line templates/base.qtpl:56
 36+//line templates/base.qtpl:53
 37 	p.StreamContent(qw422016)
 38-//line templates/base.qtpl:56
 39+//line templates/base.qtpl:53
 40 	qw422016.N().S(`
 41     </div>
 42   </body>
 43   `)
 44-//line templates/base.qtpl:59
 45+//line templates/base.qtpl:56
 46 	p.StreamScript(qw422016)
 47-//line templates/base.qtpl:59
 48+//line templates/base.qtpl:56
 49 	qw422016.N().S(`
 50 </html>
 51 `)
 52-//line templates/base.qtpl:61
 53+//line templates/base.qtpl:58
 54 }
 55 
 56-//line templates/base.qtpl:61
 57+//line templates/base.qtpl:58
 58 func WritePageTemplate(qq422016 qtio422016.Writer, p Page) {
 59-//line templates/base.qtpl:61
 60+//line templates/base.qtpl:58
 61 	qw422016 := qt422016.AcquireWriter(qq422016)
 62-//line templates/base.qtpl:61
 63+//line templates/base.qtpl:58
 64 	StreamPageTemplate(qw422016, p)
 65-//line templates/base.qtpl:61
 66+//line templates/base.qtpl:58
 67 	qt422016.ReleaseWriter(qw422016)
 68-//line templates/base.qtpl:61
 69+//line templates/base.qtpl:58
 70 }
 71 
 72-//line templates/base.qtpl:61
 73+//line templates/base.qtpl:58
 74 func PageTemplate(p Page) string {
 75-//line templates/base.qtpl:61
 76+//line templates/base.qtpl:58
 77 	qb422016 := qt422016.AcquireByteBuffer()
 78-//line templates/base.qtpl:61
 79+//line templates/base.qtpl:58
 80 	WritePageTemplate(qb422016, p)
 81-//line templates/base.qtpl:61
 82+//line templates/base.qtpl:58
 83 	qs422016 := string(qb422016.B)
 84-//line templates/base.qtpl:61
 85+//line templates/base.qtpl:58
 86 	qt422016.ReleaseByteBuffer(qb422016)
 87-//line templates/base.qtpl:61
 88+//line templates/base.qtpl:58
 89 	return qs422016
 90-//line templates/base.qtpl:61
 91+//line templates/base.qtpl:58
 92 }
 93diff --git a/templates/gitlist.qtpl b/templates/gitlist.qtpl
 94index ff2eca9942e5a5fe2f053e1842bda33993d33977..7c104ca5b394315b2657d598ddd79f797af27de7 100644
 95--- a/templates/gitlist.qtpl
 96+++ b/templates/gitlist.qtpl
 97@@ -33,6 +33,9 @@     </div>
 98   </div>
 99   <div id="about" class="col-md-4 order-first order-md-last">
100     {%z= p.About %}
101+    <div class="alert alert-warning text-center" role="alert">
102+        This project is under development, things may be broken or incomplete.
103+    </div>
104   </div>
105 </div>
106 {% endfunc %}
107diff --git a/templates/gitlist.qtpl.go b/templates/gitlist.qtpl.go
108index e2644d06a4b51b517edd8914543d4bf7f70ee436..29adbc6d54b1d1bc78b24b34043d756ee96e5d81 100644
109--- a/templates/gitlist.qtpl.go
110+++ b/templates/gitlist.qtpl.go
111@@ -161,68 +161,71 @@ //line templates/gitlist.qtpl:35
112 	qw422016.N().Z(p.About)
113 //line templates/gitlist.qtpl:35
114 	qw422016.N().S(`
115+    <div class="alert alert-warning text-center" role="alert">
116+        This project is under development, things may be broken or incomplete.
117+    </div>
118   </div>
119 </div>
120 `)
121-//line templates/gitlist.qtpl:38
122+//line templates/gitlist.qtpl:41
123 }
124 
125-//line templates/gitlist.qtpl:38
126+//line templates/gitlist.qtpl:41
127 func (p *GitListPage) WriteContent(qq422016 qtio422016.Writer) {
128-//line templates/gitlist.qtpl:38
129+//line templates/gitlist.qtpl:41
130 	qw422016 := qt422016.AcquireWriter(qq422016)
131-//line templates/gitlist.qtpl:38
132+//line templates/gitlist.qtpl:41
133 	p.StreamContent(qw422016)
134-//line templates/gitlist.qtpl:38
135+//line templates/gitlist.qtpl:41
136 	qt422016.ReleaseWriter(qw422016)
137-//line templates/gitlist.qtpl:38
138+//line templates/gitlist.qtpl:41
139 }
140 
141-//line templates/gitlist.qtpl:38
142+//line templates/gitlist.qtpl:41
143 func (p *GitListPage) Content() string {
144-//line templates/gitlist.qtpl:38
145+//line templates/gitlist.qtpl:41
146 	qb422016 := qt422016.AcquireByteBuffer()
147-//line templates/gitlist.qtpl:38
148+//line templates/gitlist.qtpl:41
149 	p.WriteContent(qb422016)
150-//line templates/gitlist.qtpl:38
151+//line templates/gitlist.qtpl:41
152 	qs422016 := string(qb422016.B)
153-//line templates/gitlist.qtpl:38
154+//line templates/gitlist.qtpl:41
155 	qt422016.ReleaseByteBuffer(qb422016)
156-//line templates/gitlist.qtpl:38
157+//line templates/gitlist.qtpl:41
158 	return qs422016
159-//line templates/gitlist.qtpl:38
160+//line templates/gitlist.qtpl:41
161 }
162 
163-//line templates/gitlist.qtpl:40
164+//line templates/gitlist.qtpl:43
165 func (p *GitListPage) StreamScript(qw422016 *qt422016.Writer) {
166-//line templates/gitlist.qtpl:40
167+//line templates/gitlist.qtpl:43
168 	qw422016.N().S(`
169 `)
170-//line templates/gitlist.qtpl:41
171+//line templates/gitlist.qtpl:44
172 }
173 
174-//line templates/gitlist.qtpl:41
175+//line templates/gitlist.qtpl:44
176 func (p *GitListPage) WriteScript(qq422016 qtio422016.Writer) {
177-//line templates/gitlist.qtpl:41
178+//line templates/gitlist.qtpl:44
179 	qw422016 := qt422016.AcquireWriter(qq422016)
180-//line templates/gitlist.qtpl:41
181+//line templates/gitlist.qtpl:44
182 	p.StreamScript(qw422016)
183-//line templates/gitlist.qtpl:41
184+//line templates/gitlist.qtpl:44
185 	qt422016.ReleaseWriter(qw422016)
186-//line templates/gitlist.qtpl:41
187+//line templates/gitlist.qtpl:44
188 }
189 
190-//line templates/gitlist.qtpl:41
191+//line templates/gitlist.qtpl:44
192 func (p *GitListPage) Script() string {
193-//line templates/gitlist.qtpl:41
194+//line templates/gitlist.qtpl:44
195 	qb422016 := qt422016.AcquireByteBuffer()
196-//line templates/gitlist.qtpl:41
197+//line templates/gitlist.qtpl:44
198 	p.WriteScript(qb422016)
199-//line templates/gitlist.qtpl:41
200+//line templates/gitlist.qtpl:44
201 	qs422016 := string(qb422016.B)
202-//line templates/gitlist.qtpl:41
203+//line templates/gitlist.qtpl:44
204 	qt422016.ReleaseByteBuffer(qb422016)
205-//line templates/gitlist.qtpl:41
206+//line templates/gitlist.qtpl:44
207 	return qs422016
208-//line templates/gitlist.qtpl:41
209+//line templates/gitlist.qtpl:44
210 }