File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -54,13 +54,14 @@ def _generate_tag_menu(all_items, tag_key):
54
54
def _generate_menu (all_items , flt = None ):
55
55
56
56
key_list = _generate_sorted_tag_keys (all_items )
57
- menu_html = '<div class="d-flex flex-row">' + ' \n '
57
+ menu_html = '<div class="d-flex flex-row"> \n '
58
58
for tag_key in key_list :
59
59
menu_html += _generate_tag_menu (all_items , tag_key ) + '\n '
60
60
if flt :
61
- menu_html += '<a type="button" class="btn btn-link" href="/pages/links.html">Return to Full Gallery</a>' + '\n '
62
- menu_html += '</div>' + '\n '
63
- menu_html += "<script> $(document).on('click',function(){$('.collapse').collapse('hide');}); </script>" + '\n '
61
+ menu_html += '<a type="button" class="btn btn-link" href="/pages/links.html">Return to Full Gallery</a> \n '
62
+ menu_html += '<a type="button" class="btn btn-link" style="position:absolute; right:0;" href="https://github.com/ProjectPythia/projectpythia.github.io/issues/new?assignees=&labels=external-links-gallery-submission&template=update-external-links-gallery.md&title=">Submit a Link</a> \n '
63
+ menu_html += '</div> \n '
64
+ menu_html += '<script> $(document).on("click",function(){$(".collapse").collapse("hide");}); </script> \n '
64
65
return menu_html
65
66
66
67
You can’t perform that action at this time.
0 commit comments