diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/views/layouts/application.html.erb | 3 | ||||
-rw-r--r-- | app/webpack/src/javascript/packages/show.js | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index cc5b772..ce9dda9 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -8,7 +8,7 @@ <meta name="description" content="<%= "#{@description} in the " if @description %>Gentoo Packages Database"> <%= stylesheet_pack_tag 'application' %> <%= javascript_pack_tag 'application' %> - <link rel="icon" href="https://www.gentoo.org/favicon.ico" type="image/x-icon"> + <link rel="icon" href="/favicon.ico" type="image/x-icon"> <% if content_for? :head -%> <%= yield :head %> <% end -%> @@ -108,6 +108,7 @@ <div class="col-12 col-md-3"> <h3 class="footerhead">Questions or comments?</h3> Please feel free to <a href="https://www.gentoo.org/inside-gentoo/contact/">contact us</a>. + <p class="mt-2"><%= `git describe --tags` %></p> </div> </div> <div class="row"> diff --git a/app/webpack/src/javascript/packages/show.js b/app/webpack/src/javascript/packages/show.js index c964fdb..d3c63a4 100644 --- a/app/webpack/src/javascript/packages/show.js +++ b/app/webpack/src/javascript/packages/show.js @@ -2,7 +2,7 @@ $(function() { var atom = $('#package-title').data('atom'); $.ajax({ - url: '/packages/' + atom + '/changelog' + url: '/packages/' + atom + '/changelog.html' }).done(function(data) { $('#changelog-container').html(data); $(document).trigger('kkuleomi:ajax'); |