31 lines
790 B
Plaintext
31 lines
790 B
Plaintext
package ui
|
|
|
|
templ License(license string, licenseLogo string) {
|
|
<div>
|
|
<h1>Converge license</h1>
|
|
<p>@templ.Raw(license)
|
|
</p>
|
|
|
|
<h1>Converge logo</h1>
|
|
|
|
<p>
|
|
The logo is based on a
|
|
<a href="https://github.com/justinribeiro/go-gopher-model">3D gopher model</a>,
|
|
git commit <code>c06e6e6b830711edf49ff91ea64606672e3be36c</code>
|
|
distributed under the creative commons license. The logo is basically the
|
|
<a href="https://wamblee.org/images/wamblee_logo.png">wamblee.org logo</a>,
|
|
but with duke replaces by a gopher since Converge is written in Go.
|
|
</p>
|
|
|
|
<p>@templ.Raw(licenseLogo)</p>
|
|
|
|
</div>
|
|
}
|
|
|
|
|
|
templ LicenseTab(license string, licenseLogo string) {
|
|
@BasePage(5) {
|
|
@License(license, licenseLogo)
|
|
}
|
|
}
|