!!!
%html
%head
%meta{:charset => "UTF-8"}
%title= @details ? @details.project_name: 'Goldenrose'
%link{:href => "https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600&subset=latin,latin-ext", :rel => "stylesheet", :type => "text/css"}
= render_asset('main.css.haml', type: :css)
%body
#container
#tabs
%ul.tab
%li
%a#default-open.tablinks{href: "javascript:void(0)", onclick: "openTab(event, 'tests-id')"} Tests
%li
%a.tablinks{href: "javascript:void(0)", onclick: "openTab(event, 'build-logs-id')"} Build logs
#tests-id.tabcontent
-if @details
= render_partial '_tests.haml'
-else
%p.no-results-info No results to display!
#build-logs-id.tabcontent
= render_partial '_build_logs.haml'
= render_partial '_footer.haml'
= render_asset('main.js.haml', type: :js)