|
| 1 | +{# To trigger whether the TOC and its button show up #} |
| 2 | +{% set page_toc = generate_toc_html() %} |
| 3 | + |
| 4 | +{# Start copy from buttons.html -#} |
| 5 | +{# Utility macros we'll re-use below -#} |
| 6 | +{% macro render_tooltip_metadata(tooltip, tooltip_placement) -%} |
| 7 | +data-toggle="tooltip" |
| 8 | +data-placement="{{ tooltip_placement }}" |
| 9 | +title="{{ translate(tooltip) }}" |
| 10 | +{%- endmacro %} |
| 11 | + |
| 12 | + |
| 13 | +{% macro render_inner_html(icon, text) %} |
| 14 | +{# used across multiple button types #} |
| 15 | +{% if icon -%} |
| 16 | +<span class="headerbtn__icon-container"> |
| 17 | + {% if icon.startswith("fa") -%} |
| 18 | + <i class="{{ icon }}"></i> |
| 19 | + {% else %} |
| 20 | + <img src="{{ pathto(icon, 1) }}"> |
| 21 | + {% endif -%} |
| 22 | +</span> |
| 23 | +{% endif %} |
| 24 | +{%- if text %}<span class="headerbtn__text-container">{{ translate(text) }}</span>{% endif -%} |
| 25 | +{% endmacro %} |
| 26 | + |
| 27 | + |
| 28 | +{% macro render_link_button(url, tooltip=None, icon=None, text=None, label=None, tooltip_placement="bottom") -%} |
| 29 | +<a href="{{ url }}" |
| 30 | + class="headerbtn{% if label %} headerbtn-{{ label }}{% endif %}" |
| 31 | + {% if tooltip %}{{ render_tooltip_metadata(tooltip, tooltip_placement) }}{% endif %} |
| 32 | +> |
| 33 | + {{ render_inner_html(icon, text) }} |
| 34 | +</a> |
| 35 | +{% endmacro %} |
| 36 | + |
| 37 | + |
| 38 | +{% macro render_js_button(javascript, tooltip=None, icon=None, text=None, label=None, tooltip_placement="bottom") %} |
| 39 | +<button onclick="{{ javascript }}" |
| 40 | + class="headerbtn{% if label %} headerbtn-{{ label }}{% endif %}" |
| 41 | + {% if tooltip %}{{ render_tooltip_metadata(tooltip, tooltip_placement) }}{% endif %} |
| 42 | +> |
| 43 | + {{ render_inner_html(icon, text) }} |
| 44 | +</button> |
| 45 | +{% endmacro %} |
| 46 | + |
| 47 | + |
| 48 | +{% macro render_label_input_button(for_input, tooltip=None, icon=None, text=None, label=None, tooltip_placement="bottom") -%} |
| 49 | +<label for="{{ for_input }}" |
| 50 | + class="headerbtn{% if label %} headerbtn-{{ label }}{% endif %}" |
| 51 | + {% if tooltip %}{{ render_tooltip_metadata(tooltip, tooltip_placement) }}{% endif %} |
| 52 | +> |
| 53 | + {{ render_inner_html(icon, text) }} |
| 54 | +</label> |
| 55 | +{% endmacro %} |
| 56 | + |
| 57 | + |
| 58 | +{# Modified from original buttons.html to add a text option -#} |
| 59 | +{% macro render_button_group(buttons, icon=None, text=None, tooltip=None, label=None) %} |
| 60 | +<div class="menu-dropdown{% if label %} menu-dropdown-{{ label }}{% endif %}"> |
| 61 | + <button class="headerbtn menu-dropdown__trigger" |
| 62 | + aria-label="{{ tooltip }}"> |
| 63 | +{% if text %}<span class="headerbtn__text-container">{{ translate(text) }}</span>{% endif %} |
| 64 | +{% if icon %}<i class="{{ icon }}"></i>{% endif %} |
| 65 | + </button> |
| 66 | +{# Modified from original buttons.html to avoid -75% translation, which makes sense only for icon-only buttons -#} |
| 67 | + <div class="menu-dropdown__content" {% if text %}style="transform:translateX(0%)"{% endif %}> |
| 68 | + <ul> |
| 69 | + {%- for button in buttons %} |
| 70 | + <li> |
| 71 | + {{ render_funcs[button.pop("type")](**button) }} |
| 72 | + </li> |
| 73 | + {% endfor %} |
| 74 | + </ul> |
| 75 | + </div> |
| 76 | +</div> |
| 77 | +{% endmacro %} |
| 78 | + |
| 79 | +{%- set render_funcs = { |
| 80 | + "group" : render_button_group, |
| 81 | + "javascript" : render_js_button, |
| 82 | + "link": render_link_button, |
| 83 | + "input_label": render_label_input_button, |
| 84 | +} |
| 85 | +-%} |
| 86 | +{# End copy from buttons.html -#} |
| 87 | + |
| 88 | +<div class="col py-1 d-flex header-article-main"> |
| 89 | + <div class="header-article__left"> |
| 90 | + {% if theme_single_page != True %} |
| 91 | + {{ render_label_input_button(for_input="__navigation", tooltip="Toggle navigation", icon="fas fa-bars", tooltip_placement="right") }} |
| 92 | + {% endif %} |
| 93 | + </div> |
| 94 | + <div class="header-article__right"> |
| 95 | + {%- for button in header_buttons -%} |
| 96 | + {{ render_funcs[button.pop("type")](**button) }} |
| 97 | + {%- endfor -%} |
| 98 | + |
| 99 | + {% if page_toc -%} |
| 100 | + {{ render_label_input_button("__page-toc", icon="fas fa-list", label="page-toc") }} |
| 101 | + {%- endif %} |
| 102 | + </div> |
| 103 | +</div> |
| 104 | + |
| 105 | +<!-- Table of contents --> |
| 106 | +<div class="col-md-3 bd-toc show noprint"> |
| 107 | + {%- if page_toc | length >= 1 %} |
| 108 | + <div class="tocsection onthispage pt-5 pb-3"> |
| 109 | + <i class="fas fa-list"></i> {{ translate(theme_toc_title) }} |
| 110 | + </div> |
| 111 | + <nav id="bd-toc-nav" aria-label="Page"> |
| 112 | + {{ page_toc }} |
| 113 | + </nav> |
| 114 | + {%- endif %} |
| 115 | +</div> |
0 commit comments