diff options
author | zeripath <art27@cantab.net> | 2020-10-19 22:03:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 17:03:08 -0400 |
commit | 2f1353a2f33762e10a304cbebf3a6a8d0381d316 (patch) | |
tree | b345bf060a107341c64447f7132d9e2b8d37a7b3 /templates/post-install.tmpl | |
parent | 3ddf3f93d6346ac9440a7a571faea4b5c1c329be (diff) | |
download | gitea-2f1353a2f33762e10a304cbebf3a6a8d0381d316.tar.gz gitea-2f1353a2f33762e10a304cbebf3a6a8d0381d316.zip |
Move install pages out of main macaron routes (#13195)
* Move install pages out of main macaron loop
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Update templates/post-install.tmpl
Co-authored-by: Lauris BH <lauris@nix.lv>
* remove prefetch
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'templates/post-install.tmpl')
-rw-r--r-- | templates/post-install.tmpl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/post-install.tmpl b/templates/post-install.tmpl new file mode 100644 index 0000000000..c7886a3263 --- /dev/null +++ b/templates/post-install.tmpl @@ -0,0 +1,24 @@ +{{template "base/head" .}} +<div class="install"> + <div class="ui container"> + <div class="ui grid"> + <div class="sixteen wide column content"> + <div class="home"> + <div class="ui stackable middle very relaxed page grid"> + <div id="repo_migrating" class="sixteen wide center aligned centered column"> + <div> + <img src="{{StaticUrlPrefix}}/img/loading.png"/> + </div> + </div> + </div> + <div class="ui stackable middle very relaxed page grid"> + <div class="sixteen wide center aligned centered column"> + <p><a href="{{AppUrl}}user/login">{{AppUrl}}user/login</a></p> + </div> + </div> + </div> + </div> + </div> + </div> +</div> +{{template "base/footer" .}} |