diff options
author | Patrick G <geek1011@users.noreply.github.com> | 2017-03-15 18:55:12 +0000 |
---|---|---|
committer | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2017-03-15 19:55:12 +0100 |
commit | 03d79983ee40a22039b5fd1a204499977ab87254 (patch) | |
tree | 198899d6b813e0dee5a9c3b54862e8ee0017a448 /templates/explore/repos.tmpl | |
parent | 780cb692d64edfadea6f79fbbad2ef033cdbe796 (diff) | |
download | gitea-03d79983ee40a22039b5fd1a204499977ab87254.tar.gz gitea-03d79983ee40a22039b5fd1a204499977ab87254.zip |
Cleaner UI for explore page (#1253) (#1255)
* Take navbar out of column
* Add styles to navbar
* Changed navbar classes
* Remove unneeded !important from index.css
* Remove unneeded !important from _explore.less
Diffstat (limited to 'templates/explore/repos.tmpl')
-rw-r--r-- | templates/explore/repos.tmpl | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/templates/explore/repos.tmpl b/templates/explore/repos.tmpl index eac3f1d26c..9ca9879103 100644 --- a/templates/explore/repos.tmpl +++ b/templates/explore/repos.tmpl @@ -1,14 +1,10 @@ {{template "base/head" .}} <div class="explore repositories"> + {{template "explore/navbar" .}} <div class="ui container"> - <div class="ui grid"> - {{template "explore/navbar" .}} - <div class="twelve wide column content"> - {{template "explore/search" .}} - {{template "explore/repo_list" .}} - {{template "base/paginate" .}} - </div> - </div> + {{template "explore/search" .}} + {{template "explore/repo_list" .}} + {{template "base/paginate" .}} </div> </div> {{template "base/footer" .}} |