diff options
| author | 2025-01-27 05:24:31 -0800 | |
|---|---|---|
| committer | 2025-01-27 14:24:31 +0100 | |
| commit | 7b7fc528f14588b2a7b9dffd0ef75c1c466accd6 (patch) | |
| tree | b77d44d1d7602d46d362b1da209cc283e345b6ca /web/template/page.tmpl | |
| parent | [bugfix] Fix top-level posts with a mention being counted as replies when doi... (diff) | |
| download | gotosocial-7b7fc528f14588b2a7b9dffd0ef75c1c466accd6.tar.xz | |
[feature/frontend] Add login button to index page which reiterates info about clients (#3377)
* Add login button to index page which reiterates info about clients
* bit of CSS fiddling, move apps from front page to login info
* fix indentation
---------
Co-authored-by: tobi <tobi.smethurst@protonmail.com>
Diffstat (limited to 'web/template/page.tmpl')
| -rw-r--r-- | web/template/page.tmpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/web/template/page.tmpl b/web/template/page.tmpl index d2edc5277..52599a531 100644 --- a/web/template/page.tmpl +++ b/web/template/page.tmpl @@ -71,7 +71,9 @@ image/webp {{- end }} <title>{{- template "instanceTitle" . -}}</title> </head> - <body class="page"> + <body> + {{- include "login_button.tmpl" . | indent 3 }} + <div class="page"> <header class="page-header"> {{- include "page_header.tmpl" . | indent 3 }} </header> @@ -81,5 +83,6 @@ image/webp <footer class="page-footer"> {{- include "page_footer.tmpl" . | indent 3 }} </footer> + </div> </body> </html>
\ No newline at end of file |
