Link Elements
Applicant Gateway
Will append a href to the Applicant Gateway for a company.
data-sf="applicant-gateway"
Example!
<a class="btn btn-warning" data-sf="applicant-gateway" target="_blank">Applicant Gateway</a>
http://localhost:3000
Apply
Will append a href to the application form for the current job.
data-sf="job-apply"
Example!
<a class="btn btn-primary" data-sf="job-apply">Apply Now</a>
http://localhost:3000
note
When the current Job has expired, no
href
will be appended. Instead, text saying Job has expired.
Share Links
Share Links are available on SmartFeed. You are able to share links to Job adverts. SmartFeed Will append the correct share href
correlating to the current job.
SmartFeed Supports
note
Share
data-sf
must be an<a>
tag.
data-sf="share-facebook"
data-sf="share-twitter"
data-sf="share-linkedin"
data-sf="share-email"
data-sf="share-print"
Example!
//font Awesome Icons
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossOrigin="anonymous" referrerPolicy="no-referrer"/>
//SmartFeed
<a href="/job.html" class="btn-link" data-sf="share-facebook">
<i class="fa-brands fa-facebook-square fa-2x"></i>
</a>
<a class="btn-link" data-sf="share-twitter">
<i class="fa-brands fa-twitter-square fa-2x"></i>
</a>
<a class="btn-link" data-sf="share-linkedin">
<i class="fa-brands fa-linkedin fa-2x"></i>
</a>
<a class="btn-link" data-sf="share-email">
<i class="fa-solid fa-envelope fa-2x"></i>
</a>
<a class="btn-link" data-sf="share-print">
<i class="fa-solid fa-print fa-2x"></i>
</a>
Map
Will append a Google Maps of the location of the current job.
data-sf="map-embed"
note
data-sf="map-embed"
must be an<iframe>
tag.
Example!
<iframe
data-sf="map-embed"
width="100%"
height="200px"
></iframe>
http://localhost:3000
Job Link
Will append the job advert ID in the URL when clicked, So the SmartFeed knows what job advert to display.
data-sf="job-link"
Example!
<a class="btn btn-secondary" data-sf="job-link" href="'#'">
More Info
</a>
http://localhost:3000