Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid O'Regan <doregan@gitlab.com>2021-02-09 01:58:07 +0300
committerEvan Read <eread@gitlab.com>2021-02-09 01:58:07 +0300
commit6f48c3965c70cd0ce64433264e6bcc7db7eef706 (patch)
treea47d223d455b5d1d2dbd8382dfafe2130aec20e7 /layouts/partials
parentb32172abd69fccd0977655c485d3e127f7a0d723 (diff)
Feat: Update header component to use bootstrap
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/versions_list.html8
1 files changed, 2 insertions, 6 deletions
diff --git a/layouts/partials/versions_list.html b/layouts/partials/versions_list.html
index 549f1d13..d35023e7 100644
--- a/layouts/partials/versions_list.html
+++ b/layouts/partials/versions_list.html
@@ -6,15 +6,11 @@
contains all current versions and offline archives.
-->
<% if archives? %>
-<li>
- <a href='/archives/'>
+ <a class="dropdown-item" href='/archives/'>
<%= version %>
</a>
-</li>
<% else %>
-<li>
- <a<%= active_dropdown(version) %> href='/<%= version %><%= @item.identifier.without_ext + '.html' %>'>
+ <a class="dropdown-item" <%= active_dropdown(version) %> href='/<%= version %><%= @item.identifier.without_ext + '.html' %>'>
<%= version %>
</a>
-</li>
<% end %>