docbrown/app/views/organizations/_sidebar.html.erb
Ashwin Vaswani fbdd80d5fc Add headings to header tags (#1003)
* 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
2018-12-19 16:47:44 -05:00

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>