Skip to content

Commit f213b7f

Browse files
committed
Add generic customization to landing page
Allow generic additional HTML or CSS to be added to the landing page output. * Fix broken placeholder template. Signed-off-by: SuperQ <[email protected]>
1 parent f42e5c7 commit f213b7f

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

web/landing_page.css

+1
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ label {
1515
display: inline-block;
1616
width: {{.Form.Width}}em;
1717
}
18+
{{.ExtraCSS}}

web/landing_page.go

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ type LandingConfig struct {
3333
Description string // A short description about the exporter.
3434
Form LandingForm // A POST form.
3535
Links []LandingLinks // Links displayed on the landing page.
36+
ExtraHTML string // Additional HTML to be embedded.
37+
ExtraCSS string // Additional CSS to be embedded.
3638
Version string // The version displayed.
3739
}
3840

web/landing_page.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ <h1>{{.Name}}</h1>
2323
<div>
2424
<form action="{{ .Form.Action}}">
2525
{{ range .Form.Inputs }}
26-
<label>{{ .Label }}:</label>&nbsp;<input type="{{ .Type }}" name="{{ .Name }}" placeholder=" .Placeholder }}" value="{{ .Value }}"><br>
26+
<label>{{ .Label }}:</label>&nbsp;<input type="{{ .Type }}" name="{{ .Name }}" placeholder="{{ .Placeholder }}" value="{{ .Value }}"><br>
2727
{{ end }}
2828
<input type="submit" value="Submit">
2929
</form>
3030
</div>
3131
{{ end }}
32+
{{ .ExtraHTML }}
3233
</main>
3334
</body>
3435
</html>

0 commit comments

Comments
 (0)