33 < div class ="row clearfix ">
44 < div class ="col-md-8 col-xs-12 ">
55 < h1 > <%= @job . title %> </ h1 >
6- < h2 > <%= @job . company_name %> <%= location_str ( @job ) %> </ h2 >
76 </ div >
87 </ div >
98 </ div >
3837 <!-- Entry Content
3938 ============================================= -->
4039 < div class ="entry-content notopmargin ">
41- < span class ="label label-primary "> <%= @job . employment_type . try ( :humanize ) %> </ span >
40+ < span class ="label label-primary lb-md "> <%= @job . employment_type . try ( :humanize ) %> </ span >
4241
43- < span class ="label label-primary "> <%= @job . experience . try ( :humanize ) %> </ span >
42+ < span class ="label label-primary lb-md "> <%= @job . experience . try ( :humanize ) %> </ span >
4443
45- < span class ="label label-primary "> Equity or stock options: <%= @job . equity? ? 'Yes' : 'No' %> </ span >
44+ < span class ="label label-primary lb-md "> Equity or stock options: <%= @job . equity? ? 'Yes' : 'No' %> </ span >
4645
47- < span class ="label label-primary "> Remote: <%= @job . remote? ? 'Yes' : 'No' %> </ span >
48- < p >
49- < span class ="label label-success "> <%= @job . salary_to_s %> </ span >
50- </ p >
46+ < span class ="label label-primary lb-md "> Remote: <%= @job . remote? ? 'Yes' : 'No' %> </ span >
47+
48+ < span class ="label label-success lb-md "> <%= @job . salary_to_s %> </ span >
5149
5250 < div class ="job-description ">
5351 <% if @job . description . blank? %>
6058 <!-- .entry-content end -->
6159 </ div >
6260 </ div >
63-
64- <!-- .actions starts -->
65- <% if @job . online? %>
66- < div class ="job-post-user-actions ">
67- < div class ="col-md-6 col-xs-12 ">
68- <%= link_to ( "Apply for this position" , @job . external_link , class : "button button-3d" , target : "_blank" ) %>
69-
70- <%# unless @job.apply_email.blank? %>
71- <%= mail_to ( @job . apply_email , "Apply for this position via email" , class : "button button-3d button-yellow button-mini" , target : "_blank" ) %>
72- <%# end %>
73- </ div >
74-
75- < div class ="col-md-6 col-xs-12 " style ="text-align:right ">
76- < p style ="margin:0px; "> Share this job:</ p >
77- <%= link_to ( "mailto:?subject=Job on MENAdevs&body=Hi, you might be interested in this job I found on MENAdevs #{ job_url ( @job ) } " ) do %>
78- <%= fa_icon ( "inbox 2x" ) %>
79- <% end %>
80-
81- <%= link_to ( "https://twitter.com/intent/tweet?" + @job . to_text_for_twitter , target : "_blank" ) do %>
82- <%= fa_icon ( "twitter 2x" ) %>
83- <% end %>
84- </ div >
85- </ div >
86- <% end %>
87- <!-- .actions end -->
8861 </ div >
8962
90- <%= render ( 'job_sidebar ' , job : @job , job_statistics : @job_statistics ) %>
63+ <%= render ( 'job_info_sidebar ' , job : @job ) %>
9164
65+ <%= render ( 'job_actions_sidebar' , job : @job , job_statistics : @job_statistics ) %>
9266 </ div >
9367 </ div >
9468</ section >
9569
9670< script type ="application/ld+json ">
9771{
98- "@context" : "http://schema.org" ,
99- "@type" : "NewsArticle" ,
100- "mainEntityOfPage" : {
101- "@type" : "WebPage" ,
102- "@id" : "https://google.com/article"
72+ "@context" : "https://schema.org" ,
73+ "@type" : "JobPosting" ,
74+ "baseSalary" : "<%= @job . from_salary %> " ,
75+ "datePosted" : <% if @job . posted_on %> "<%= @job . posted_on . strftime ( '%Y-%m-%d' ) %> " <% end %> ,
76+ "validThrough" : <% if @job . expires_on %> "<%= @job . expires_on . strftime ( '%Y-%m-%d' ) %> " <% end %> ,
77+ "description" : "<%= @job . description %> " ,
78+ "educationRequirements" : "<%= @job . education %> " ,
79+ "employmentType" : "<%= @job . employment_type %> " ,
80+ "experienceRequirements" : "<%= @job . experience %> " ,
81+ "incentiveCompensation" : "<%= @job . equity %> " ,
82+ "industry" : "Computer Software" ,
83+ "hiringOrganization" : "<%= @job . company_name %> " ,
84+ "jobLocation" : {
85+ "@type" : "Place" ,
86+ "address" : {
87+ "@type" : "Text" ,
88+ "addressCountry" : "<%= @job . location_name %> "
89+ }
10390 } ,
104- "headline" : "<%= @job . title %> " ,
91+ "occupationalCategory" : "15-1132.00 Software Developers, Application" ,
92+ "qualifications" : "Ability to work in a team environment with members of varying skill levels. Highly motivated. Learns quickly." ,
93+ "responsibilities" : "Design and write specifications for tools for in-house customers Build tools according to specifications" ,
94+ "salaryCurrency" : "<%= @job . currency %> " ,
95+ "title" : "<%= @job . title %> "
10596}
10697</ script >
0 commit comments