recruiter 1.1.15 → 1.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8d05cc4a490f729d3ff1547b887d4d7c2aeef03a
|
|
4
|
+
data.tar.gz: f867b11d6a96396c9b4af5d60af3e2f9a11772f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2101364d18370eb9d4d2bf9b300a04d10eb68a10977f6fa2f976caa79501c4b166b2f0f6e3618d30198f215a7f44beecfe6a7c7ead5b77cee25a9e0d6f683507
|
|
7
|
+
data.tar.gz: 15f205bd589a7bf074f9817aa8631bf21fdaeaaaf1b5e547cafdbd08345aedfa67fd62485d551b5c936c87409a45d642faf7581bf7867ca88053e59c48fffd64
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
<% header_tag ||= :h2 %>
|
|
2
|
+
|
|
1
3
|
<div class="job">
|
|
2
4
|
<%= link_to article do %>
|
|
3
5
|
<article class="row">
|
|
4
6
|
<div class="small-12 columns">
|
|
5
7
|
<div class="wrapper">
|
|
6
|
-
|
|
8
|
+
<%= content_tag(header_tag, article.decorate.title) %>
|
|
7
9
|
<div class="published_date line"><%= article.decorate.published_at %></div>
|
|
8
10
|
</div>
|
|
9
11
|
</div>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<div class="row">
|
|
2
2
|
<div id="jobs" class="small-12 medium-12 large-12 columns">
|
|
3
3
|
<h2><%= t('.title_jobs') %></h2>
|
|
4
|
-
<%= render @jobs %>
|
|
4
|
+
<%= render @jobs, header_tag: :h3 %>
|
|
5
5
|
</div>
|
|
6
6
|
|
|
7
7
|
<%= button_link [:jobs], 'secondary expand' do %>
|
|
@@ -19,3 +19,5 @@
|
|
|
19
19
|
<%= t('.see_all_articles') %>
|
|
20
20
|
<% end %>
|
|
21
21
|
</div>
|
|
22
|
+
|
|
23
|
+
<%= render 'recruiter/share', object: {} %>
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
<% header_tag ||= :h2 %>
|
|
2
|
+
|
|
1
3
|
<div class="job">
|
|
2
4
|
<%= link_to job do %>
|
|
3
5
|
<article class="row">
|
|
4
6
|
<div class="small-12 columns">
|
|
5
7
|
<div class="wrapper">
|
|
6
|
-
|
|
8
|
+
<%= content_tag(header_tag, job.decorate.title) %>
|
|
7
9
|
<div class="line"><%= render 'tags', tags: job.tags %></div>
|
|
8
10
|
<div class="location line"><%= job.decorate.location %></div>
|
|
9
11
|
<div class="published_date line"><%= job.decorate.published_at %></div>
|
data/lib/recruiter/version.rb
CHANGED