* updating all headers to have h* tags, or changing elements * Remove commented out binding.pry * Remove unused page * Use article instead of div for consistency * Update snapshot with new section tag * Use h4 tags again for new views
25 lines
710 B
Text
25 lines
710 B
Text
<div id="sidebar-wrapper-left" class="sidebar-wrapper sidebar-wrapper-left">
|
|
<div class="sidebar-bg" id="sidebar-bg-left"></div>
|
|
<div class="side-bar">
|
|
<% if @organization.story.present? %>
|
|
<div class="widget">
|
|
<header>
|
|
<h4>our story</h4>
|
|
</header>
|
|
<div class="widget-body">
|
|
<%= sanitized_sidebar @organization.story %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<% if @organization.tech_stack.present? %>
|
|
<div class="widget">
|
|
<header>
|
|
<h4>our stack</h4>
|
|
</header>
|
|
<div class="widget-body">
|
|
<%= sanitized_sidebar @organization.tech_stack %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|