diff options
Diffstat (limited to 'templates/default/fulldoc/html/full_list_functions.erb')
| -rw-r--r-- | templates/default/fulldoc/html/full_list_functions.erb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/default/fulldoc/html/full_list_functions.erb b/templates/default/fulldoc/html/full_list_functions.erb new file mode 100644 index 0000000..1dca483 --- /dev/null +++ b/templates/default/fulldoc/html/full_list_functions.erb @@ -0,0 +1,10 @@ +<% even_odd = 'odd' %> +<% @items.each do |item| %> + <li class="<%= even_odd %> <%= item.has_tag?(:deprecated) ? 'deprecated' : '' %>"> + <div class="item"> + <%= linkify item, h(item.name(true)) %> + <small><%= item.header.title %></small> + </div> + </li> + <% even_odd = (even_odd == 'even' ? 'odd' : 'even') %> +<% end %> |
