A Pen by Jamie Wallace on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"courses": [ | |
{ | |
"id": "XdODXyuGTnaikmu3KhVcgg", | |
"title": "How to prevent sexual harassment", | |
"description": "From 26th October 2024 there is a duty to take reasonable steps to prevent sexual harassment in the workplace, this course aims to provide employers / managers or supervisors with an overview of the duties, guidance on assessing risks and what 'reasonable steps' could be taken to prevent sexual harassment in the workplace.", | |
"durationMinutes": 20, | |
"industries": [], | |
"accreditations": [ | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Response status code: 200 | |
Response text: [ | |
{ | |
"id": 189398, | |
"title": "It would be helpful to be able to send notifications to a specific employee rather than the whole organisation.", | |
"description": "It would allow me to send reminders to specific employees that they have a task to complete.", | |
"resolution": null, | |
"status": "new", | |
"status_name": "Not Reviewed", | |
"vendor_id": 4548, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function ($) { | |
$.fn.googlePlaces = function (options) { | |
// This is the easiest way to have default options. | |
var settings = $.extend({ | |
// These are the defaults. | |
header: "Google Reviews", | |
footer: '', | |
maxRows: 6, | |
minRating: 4, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": 1, | |
"fullname": "Holly Wood", | |
"firstname": "Holly", | |
"lastname": "Wood", | |
"email": "[email protected]", | |
"job": "Talent Scout", | |
"image": "https://i.pravatar.cc/64", | |
"dob": "1964/12/20", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": 1, | |
"fullname": "Holly Wood", | |
"firstname": "Holly", | |
"lastname": "Wood", | |
"email": "[email protected]", | |
"job": "Talent Scout", | |
"image": "https://i.pravatar.cc/64" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section id="section-{{ section.title | slugify }}" class=""> | |
<div class="carousel gallery01-main"> | |
{% assign gallery_images = section.images %} | |
{% for item in gallery_images %} | |
<div class="carousel-cell w-full h-large"> | |
<img class="w-full h-full object-cover" data-flickity-lazyload="{{ item }}" src="{{ item }}" alt=""> | |
</div> | |
{% endfor %} | |
</div> |