app/views/env.erb in tailog-0.4.8 vs app/views/env.erb in tailog-0.5.0

- old
+ new

@@ -1,6 +1,16 @@ -<dl class="dl-horizontal dl-hover"> - <% ENV.each do |key, value| %> - <dt><%= key %></dt> - <dd><%= value %></dd> - <% end %> -</dl> +<table class="table table-striped table-hover"> + <thead> + <tr> + <th>Key</th> + <th>Value</th> + </tr> + </thead> + <tbody> + <% ENV.each do |key, value| %> + <tr> + <td><%= key %></td> + <td><%= value %></td> + </tr> + <% end %> + </tbody> +</table>