58 | <%= image_tag "logo.png", class: 'logo' %>
59 | <% if language_tabs.any? %>
60 |
69 | <% end %>
70 | <% if current_page.data.search %>
71 |
72 |
73 |
74 |
75 | <% end %>
76 |
77 | <% toc_data(page_content).each do |h1| %>
78 | -
79 | <%= h1[:content] %>
80 | <% if h1[:children].length > 0 %>
81 |
82 | <% h1[:children].each do |h2| %>
83 | -
84 | <%= h2[:content] %>
85 | <% if h2[:children].length > 0 %>
86 |
87 | <% h2[:children].each do |h3| %>
88 | -
89 | <%= h3[:content] %>
90 | <% if h3[:children].length > 0 %>
91 |
98 | <% end %>
99 |
100 | <% end %>
101 |
102 | <% end %>
103 |
104 | <% end %>
105 |
106 | <% end %>
107 |
108 | <% end %>
109 |
110 | <% if current_page.data.toc_footers %>
111 |
116 | <% end %>
117 |
118 |
119 |
120 |
121 | <%= page_content %>
122 |
123 |
124 | <% if language_tabs.any? %>
125 |
126 | <% language_tabs.each do |lang| %>
127 | <% if lang.is_a? Hash %>
128 |
<%= lang.values.first %>
129 | <% else %>
130 |
<%= lang %>
131 | <% end %>
132 | <% end %>
133 |
134 | <% end %>
135 |
136 |
137 |
138 |
139 |
--------------------------------------------------------------------------------