This file contains 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 hubspot = require('@hubspot/api-client'); | |
exports.main = (event, callback) => { | |
const hubspotClient = new hubspot.Client({ | |
apiKey: process.env.HAPIKEY | |
}); | |
hubspotClient.crm.companies.basicApi.getById(event.object.objectId, ['name', 'address', 'zip', 'etc']) | |
.then(results => { |
This file contains 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 data = fitlerType == 'ContentTypes' ? '[data-type="' + clickedItem + '"]' : '[data-topic="' + clickedItem + '"]' | |
const data = fitlerType == 'ContentTypes' ? `[data-type="${clickedItem}"]` : `[data-topic="${clickedItem}"]` | |
let data = `[data-topic="${clickedItem}"]` | |
if(filterType == 'ContentTypes') { | |
data = `[data-type="${clickedItem}"]` | |
} |
This file contains 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 embed_hubspot_cta( $atts ) { | |
// to use this embed code follow this: | |
// [embed_cta portal=”{{ portalID tierpoitn is: 135870 }}″ cta=”{{ ctaId }}”] | |
// [embed_cta portal="135870" cta="8b879891-fb4c-4961-9cbf-87adb9e827a7" centered="true"] | |
$a = shortcode_atts( array( | |
'portal' => '135870', | |
'cta' => '', | |
'centered' => 'false', | |
), $atts ); |
This file contains 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
// example goes over three diffferent items. The regex matches for a cta in a p tag as well as a normal cta. it ignores justify center alignment stuff | |
let body = `<p>{{cta('784c4ec9-c3b6-4080-9d59-2bc6dafc4122','justifycenter')}}</p>",https://f.hubspotusercontent20.net/hubfs/135870/BIT2020-1120x630-NutanixFiresideChat_multicloud.jpg,Matt Pacheco,"Cloud Computing,BraveIT,remote workforce" | |
BraveIT Session: How Can Businesses Thrive in a Multicloud World?,{{cta('784c4ec9-c3b6-1111-1111-2bc6dafc4122','justifycenter')}}braveit-session-how-can-businesses-thrive{{cta('784c4ec9-c3b6-3333-333-2bc6dafc4122')}}-in-a-multicloud-world,"TierPoint and Dell Technologies discuss multicloud challenges, the public cloud, managing apps & workloads in the cloud, and more.",04/20/52859 08:06:27,"<p>Over the past couple of years, conversations that were once about “the cloud” have shifted to conversations about multicloud. As IT departments moved their enterprise applications to the cloud, they discovered that different applicat |
This file contains 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", "name": "Pre Maturity", "intake": "lei", "intakeId": "1", "category": "preintake" }, | |
{ "id": "2", "name": "Maturity Notification", "intake": "lei", "intakeId": "1", "category": "preintake" }, | |
{ "id": "3", "name": "Lease End Inspection", "intake": "lei", "intakeId": "1", "category": "preintake" }, | |
{ "id": "4", "name": "Service Quote", "intake": "lei", "intakeId": "1", "category": "preintake" }, | |
{ "id": "5", "name": "Send Service Quote To Customer", "intake": "lei", "intakeId": "1", "category": "preintake" }, | |
{ "id": "6", "name": "Waiting For Service Quote Approval", "intake": "lei", "intakeId": "1", "category": "approval" }, | |
{ "id": "7", "name": "Waiting For Service Quote Approval [APPROVED]", "intake": "lei", "intakeId": "1", "category": "approval" }, | |
{ "id": "8", "name": "Waiting For Service Quote Approval [DENIED]", "intake": "lei", "intakeId": "1", "category": "denied" }, | |
{ "id": "9", "name": "Send Acquisition", "intake": "lei", "intakeId": "1", "category": "approval" }, | |
{ "id": "10", "name": |
This file contains 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
{% for content in contents %} | |
<div class="post-item"> | |
{% if content.topic_list %} | |
{% set post_topics = content.topic_list|join %} | |
{% set target_topic = "Featured" %} | |
{% if post_topics is string_containing target_topic %} | |
<h5>post HAS {{ target_topic }} TAG</h5> | |
{% else %} | |
<h5>NO {{ target_topic }} TAG</h5> | |
{% endif %} |
This file contains 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
>>> https://www.tierpoint.com/knowledge-center/webinars/cloud-to-cloud-recovery-disaster-recovery-as-a-service-draas-powered-by-dell-emc-recoverp | |
> -------------------------------------------- | |
> 301 Moved Permanently | |
> -------------------------------------------- | |
Status: 301 Moved Permanently | |
Code: 301 | |
Date: Thu, 15 Oct 2020 14:56:44 GMT | |
Server: Apache |
This file contains 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
<script> | |
// deckerdevslazyload natitve then script based if not proper browser | |
(function() { | |
// check to see if native lazy loading is available | |
if ("loading" in HTMLImageElement.prototype) { | |
console.log('lazy loading is native') | |
var lazyEls = $('[data-src]'); | |
lazyEls.each(function(){ | |
var src = $(this).data('src'); | |
var srcset = $(this).data('srcset'); |
This file contains 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
window.addEventListener('message', event => { | |
if (event.data.type === 'hsFormCallback' && event.data.eventName === 'onFormSubmitted') { | |
} | |
}); |
This file contains 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
{# raw_html "custom_head" label="Enter custom head HTML here", export_to_template_context=True #} | |
{# widget_data.custom_head.value #} | |
{% set company_name = '######' %} | |
{% set logo_url = '#####' %} | |
<script type="application/ld+json"> | |
{ | |
"@context": "http://schema.org", | |
"@type": "Blog", |