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
| <div class="wistia-embed-container"> | |
| <script src="https://fast.wistia.com/embed/medias/{{ module.wistia_video_id|trim }}.jsonp" async></script> | |
| <script src="https://fast.wistia.com/assets/external/E-v1.js" async></script> | |
| </div> | |
| <div class="hero-video-link"> | |
| <span class="trigger-video"><span class="wistia_embed wistia_async_{{ module.wistia_video_id|trim }} popover=true popoverContent=link" style="display:inline;position:relative"><a href="#">Watch Video<img src="//cdn2.hubspot.net/hubfs/191357/images/temp-images/playbutton-50.png" data-original="//cdn2.hubspot.net/hubfs/191357/images/temp-images/playbutton-50.png" data-hover="//cdn2.hubspot.net/hubfs/191357/images/temp-images/playbutton-50-hover.png" alt="play button to start video"></a></span></span> | |
| </div> |
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
| <IfModule mod_headers.c> | |
| Header add Access-Control-Allow-Origin "https://content.relittle.com/" | |
| Header add Access-Control-Allow-Methods: "GET" | |
| </IfModule> |
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
| {% set eventsBlog = blog_recent_posts('2670316261', 200) %} | |
| <script> | |
| var allEvents = [{% for post in eventsBlog %} | |
| { | |
| id: '{{ post.id }}', | |
| name: '{{ post.name|escape }}', | |
| url: '{{ post.absolute_url }}', | |
| image: "{{ post.featured_image }}", | |
| date: '{{ post.publishDateLong|datetimeformat('%B %e, %Y') }}', |
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
| const Crawler = require("crawler"); | |
| var c = new Crawler({ | |
| maxConnections: 10, | |
| // each crawled page this will happen | |
| callback: function(error, res, done) { | |
| if(error) { | |
| console.log(error); | |
| } else { | |
| var $ = res.$; |
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
| <style> | |
| .filter-news-container > div { | |
| width: calc(100% / 4 - 10px); | |
| display: inline-block; | |
| } | |
| .filter-news { | |
| color: #00b2e3; | |
| text-decoration: none; | |
| } | |
| </style> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta description="A Personal Chef since 1993, Kathy is able to draw on her vast array of talent and passions using them to enrich the quality of life for those she serves. Her culinary experiences..."> | |
| <title>Chef Kathy Peterson</title> | |
| <link rel="stylesheet" type="text/css" href="css/style.css"> | |
| <link href="http://fonts.googleapis.com/css?family=Josefin+Slab:400,600,700" rel="stylesheet" type="text/css"> | |
| <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> | |
| <link rel="icon" href="/favicon.ico" type="image/x-icon"> |
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
| <?php | |
| class Chef { | |
| public static function getJquery() { | |
| $currentJquery = '<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>'; | |
| return $currentJquery; | |
| } | |
| public static function getSliderScript() { | |
| $sliderScript = '<script type="text/javascript" src="slider/engine1/wowslider.js"></script> | |
| <script type="text/javascript" src="slider/engine1/script.js"></script>'; | |
| return $sliderScript; |
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
| $temp_date = 'your date here'; | |
| $date_for_live = (strtotime($temp_date) + 3 * 60 * 60); | |
| if( time() > $date_for_live ) { | |
| // remove the hidden status | |
| } |
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
| $temp_date = 'your date here'; | |
| $date_for_live = (strtotime($temp_date) + 3 * 60 * 60); | |
| if( time() > $date_for_live ) { | |
| // remove the hidden status | |
| } |