giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
16 lines
924 B
Handlebars
16 lines
924 B
Handlebars
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="{{.Badge.Width}}" height="20"
|
|
role="img" aria-label="{{.Badge.Label.Text}}: {{.Badge.Message.Text}}">
|
|
<title>{{.Badge.Label.Text}}: {{.Badge.Message.Text}}</title>
|
|
<g shape-rendering="crispEdges">
|
|
<rect width="{{.Badge.Label.Width}}" height="20" fill="#555" />
|
|
<rect x="{{.Badge.Label.Width}}" width="{{.Badge.Message.Width}}" height="20" fill="{{.Badge.Color}}" />
|
|
</g>
|
|
<g fill="#fff" text-anchor="middle" font-family="{{.Badge.FontFamily}}"
|
|
text-rendering="geometricPrecision" font-size="{{.Badge.FontSize}}">
|
|
<text x="{{.Badge.Label.X}}" y="140"
|
|
transform="scale(.1)" fill="#fff" textLength="{{.Badge.Label.TextLength}}">{{.Badge.Label.Text}}</text>
|
|
<text x="{{.Badge.Message.X}}" y="140" transform="scale(.1)" fill="#fff"
|
|
textLength="{{.Badge.Message.TextLength}}">{{.Badge.Message.Text}}</text>
|
|
</g>
|
|
</svg>
|