<h1><%= type %></h1>

<%= include.('notices.html', notices: type) %>

<%= type %>

<% unless type.empty? %>

<h2>Implements</h2>

<ul>

<% type[:interfaces].each do |interface| %>
  <li><code><a href="<%= base_url %>/interface/<%= slugify.(interface) %>"><%= interface %></a></code></li>
<% end %>

</ul>

<% end %>

<% unless type.empty? %>

<h2>Connections</h2>

<%= include.('connections.html', connections: type) %>

<% end %>

<% unless type.empty? %>

<h2>Fields</h2>

<%= include.('fields.html', fields: type) %>

<% end %>