diff options
| author | Anhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me> | 2024-11-14 14:48:13 +0100 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me> | 2024-11-14 14:48:13 +0100 |
| commit | 83a7fc5cf8eda929eef75305ec8435ecd228d2f4 (patch) | |
| tree | b7eda052aa52e57ac9de2139f728678e53912596 | |
| parent | 9787e1a1d5364ca056ec033f26e28a76ab6423e1 (diff) | |
feat(legal): merge legal and credits page
| -rw-r--r-- | main.go | 8 | ||||
| -rw-r--r-- | templates/base/base.gohtml | 2 | ||||
| -rw-r--r-- | templates/page/index.gohtml | 8 | ||||
| -rw-r--r-- | templates/page/legal.gohtml (renamed from templates/page/credits.gohtml) | 5 |
4 files changed, 9 insertions, 14 deletions
@@ -59,11 +59,11 @@ func main() { g.Templates = append(g.Templates, "templates/base/*.gohtml") g.NewTemplate("index", "/", cfg.Person.Name, "", "", &cfg).Handle() - g.NewTemplate("credits", - "/credits", - "Credits", + g.NewTemplate("legal", + "/legal", + "Legal things", "", - "Credits of "+cfg.Person.Name+"'s Now page", + "Legal information about "+cfg.Person.Name+"'s Now page", &cfg). Handle() g.NewTemplate("tags", diff --git a/templates/base/base.gohtml b/templates/base/base.gohtml index 9d97934..70b32af 100644 --- a/templates/base/base.gohtml +++ b/templates/base/base.gohtml @@ -14,7 +14,7 @@ {{template "body" .Data}} </div> <footer class="credits"> - <p>Crafted by <a href="https://www.anhgelus.world/" target="_blank">Anhgelus Morhtuuzh</a></p> + <p>Crafted by <a href="/legal" target="_blank">Anhgelus Morhtuuzh</a></p> </footer> <script type="module" src="{{getAssetPath "index.js"}}" defer></script> </body> diff --git a/templates/page/index.gohtml b/templates/page/index.gohtml index b5f964f..dee6782 100644 --- a/templates/page/index.gohtml +++ b/templates/page/index.gohtml @@ -19,16 +19,8 @@ </div> {{ end }} <div class="link" style="{{ .Color.Button.GetBackground }}"> - <a href="{{ .Legal.LegalInformationLink }}" target="_blank" style="{{ .Color.Button.GetTextColor }}"> - Legal information - </a> - </div> - <div class="link" style="{{ .Color.Button.GetBackground }}"> <a href="/tags" style="{{ .Color.Button.GetTextColor }}">Tags</a> </div> - <div class="link" style="{{ .Color.Button.GetBackground }}"> - <a href="/credits" style="{{ .Color.Button.GetTextColor }}">Credits</a> - </div> </div> </main> {{end}}
\ No newline at end of file diff --git a/templates/page/credits.gohtml b/templates/page/legal.gohtml index 2d82734..2769431 100644 --- a/templates/page/credits.gohtml +++ b/templates/page/legal.gohtml @@ -1,6 +1,9 @@ {{define "body"}} <div class="credits-legal"> - <h2>Credits</h2> + <h2>Legal information</h2> + <p> + Legal information are available <a href="{{ .Legal.LegalInformationLink }}" target="_blank">here</a>. + </p> <p> The software behind this website was made by <a href="https://www.anhgelus.world/" target="_blank">Anhgelus Morhtuuzh</a>. It is available on <a href="https://github.com/anhgelus/now">GitHub</a> for free and licensed under the |
