Sha256: 375a0ea9172507a45ad1791b44f22a7a71699b4c5bb83be5de9846cc98fd320c
Contents?: true
Size: 746 Bytes
Versions: 94
Compression:
Stored size: 746 Bytes
Contents
<% raise "Missing 'head' key in table landing page block" unless local_assigns['head'] raise "Missing 'body' key in table landing page block" unless local_assigns['body'] %> <div class="Vlt-table"> <table> <thead> <tr> <% local_assigns['head'].each do |row| %> <th><%= row['content'] %></th> <% end %> </tr> </thead> <tbody> <% local_assigns['body'].each do |row| %> <tr> <% row['row'].each do |data| %> <td><%= data['column'].render_markdown %></td> <% end %> </tr> <% end %> </tbody> </table> </div>
Version data entries
94 entries across 94 versions & 1 rubygems