{{ ---------BEGIN THEME SETTINGS AND CONTROLS----------- }}
{% assign: Info_Block_Link_Behavior = 'new' %} {{ Options: 'Same Window' or 'new' }}
{% assign: Number_of_Info_Blocks = 2 %} {{ Options: 1 to 10 }}
{{ --INFO BLOCK 1 SETTINGS-- }}
{% assign: ib_1_title = "" %}
{% capture ib_1_desc %}{% endcapture %}
{% assign: ib_1_display_image = 'Yes' %}
{% assign: ib_1_image = 'https://themefiend.com/wp-content/uploads/nikeverse/ABOUT-US.jpg' %}
{% assign: ib_1_include_image_link = 'Yes' %}
{% assign: ib_1_image_link = "http://example.com" %}
{% assign: ib_1_desc_image_order = "Image over Desc" %}
{{ --INFO BLOCK 2 SETTINGS-- }}
{% assign: ib_2_title = "" %}
{% capture ib_2_desc %}WHAT DOES OBED MEAN?
Obed is of Hebrew origin meaning, servant (servant of God).
HOW DOES OBED SERVE?
At Obed, we build skateboard bags that remind and encourage action sports enthusiasts globally to serve others. -Mathew 25:35-36
OUR STORY: THE START OF THE BRAND.
COMING SOON...{% endcapture %}
{% assign: ib_2_display_image = 'No' %}
{% assign: ib_2_image = '' %}
{% assign: ib_2_include_image_link = 'No' %}
{% assign: ib_2_image_link = "http://example.com" %}
{% assign: ib_2_desc_image_order = "Desc over Image" %}
{{ --INFO BLOCK 3 SETTINGS-- }}
{% assign: ib_3_title = "How are you doing?" %}
{% capture ib_3_desc %}{% endcapture %}
{% assign: ib_3_display_image = 'Yes' %}
{% assign: ib_3_image = '' %}
{% assign: ib_3_include_image_link = 'No' %}
{% assign: ib_3_image_link = "http://example.com" %}
{% assign: ib_3_desc_image_order = "Desc over Image" %}
{{ --INFO BLOCK 4 SETTINGS-- }}
{% assign: ib_4_title = "How are you doing?" %}
{% capture ib_4_desc %}{% endcapture %}
{% assign: ib_4_display_image = 'No' %}
{% assign: ib_4_image = '' %}
{% assign: ib_4_include_image_link = 'No' %}
{% assign: ib_4_image_link = "http://example.com" %}
{% assign: ib_4_desc_image_order = "Desc over Image" %}
{{ --INFO BLOCK 5 SETTINGS-- }}
{% assign: ib_5_title = "How are you doing?" %}
{% capture ib_5_desc %}{% endcapture %}
{% assign: ib_5_display_image = 'No' %}
{% assign: ib_5_image = '' %}
{% assign: ib_5_include_image_link = 'No' %}
{% assign: ib_5_image_link = "http://example.com" %}
{% assign: ib_5_desc_image_order = "Desc over Image" %}
{{ --INFO BLOCK 6 SETTINGS-- }}
{% assign: ib_6_title = "How are you doing?" %}
{% capture ib_6_desc %}{% endcapture %}
{% assign: ib_6_display_image = 'No' %}
{% assign: ib_6_image = '' %}
{% assign: ib_6_include_image_link = 'No' %}
{% assign: ib_6_image_link = "http://example.com" %}
{% assign: ib_6_desc_image_order = "Desc over Image" %}
{{ --INFO BLOCK 7 SETTINGS-- }}
{% assign: ib_7_title = "How are you doing?" %}
{% capture ib_7_desc %}{% endcapture %}
{% assign: ib_7_display_image = 'No' %}
{% assign: ib_7_image = '' %}
{% assign: ib_7_include_image_link = 'No' %}
{% assign: ib_7_image_link = "http://example.com" %}
{% assign: ib_7_desc_image_order = "Desc over Image" %}
{{ --INFO BLOCK 8 SETTINGS-- }}
{% assign: ib_8_title = "How are you doing?" %}
{% capture ib_8_desc %}{% endcapture %}
{% assign: ib_8_display_image = 'No' %}
{% assign: ib_8_image = '' %}
{% assign: ib_8_include_image_link = 'No' %}
{% assign: ib_8_image_link = "http://example.com" %}
{% assign: ib_8_desc_image_order = "Desc over Image" %}
{{ --INFO BLOCK 9 SETTINGS-- }}
{% assign: ib_9_title = "How are you doing?" %}
{% capture ib_9_desc %}{% endcapture %}
{% assign: ib_9_display_image = 'No' %}
{% assign: ib_9_image = '' %}
{% assign: ib_9_include_image_link = 'No' %}
{% assign: ib_9_image_link = "http://example.com" %}
{% assign: ib_9_desc_image_order = "Desc over Image" %}
{{ --INFO BLOCK 10 SETTINGS-- }}
{% assign: ib_10_title = "How are you doing?" %}
{% capture ib_10_desc %}{% endcapture %}
{% assign: ib_10_display_image = 'No' %}
{% assign: ib_10_image = '' %}
{% assign: ib_10_include_image_link = 'No' %}
{% assign: ib_10_image_link = "http://example.com" %}
{% assign: ib_10_desc_image_order = "Desc over Image" %}
{{ ---------END THEME SETTINGS AND CONTROLS----------- }}
{% assign: iblbv = Info_Block_Link_Behavior %}
{% assign: nib = Number_of_Info_Blocks %}
{{ -----------BEGIN SCRIPTS -----------}}
(function($) {
$(document).ready(function(){
$(".info_block > br, .info_block p:empty").remove();
$(".ib_desc br:first-child, .ib_desc br:first-child + br").remove();
});
var url1 = /(^|<|\s)(www\..+?\..+?)(\s|>|$)/g,
url2 = /(^|<|\s)(((https?|ftp):\/\/|mailto:).+?)(\s|>|$)/g,
linkifyThis = function () {
var childNodes = this.childNodes,
i = childNodes.length;
while(i--)
{
var n = childNodes<i>;
if (n.nodeType == 3) {
var html = $.trim(n.nodeValue);
if (html)
{
html = html.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(url1, '$1<a href="http://$2">$2</a>$3')
.replace(url2, '$1<a href="$2">$2</a>$5');
$(n).after(html).remove();
}
}
else if (n.nodeType == 1 && !/^(a|button|textarea)$/i.test(n.tagName)) {
linkifyThis.call(n);
}
}
};
$.fn.linkify = function () {
return this.each(linkifyThis);
};
$('body').linkify();
$("a[@href^='www'], a[@href^='http']").attr('target','_blank');
})(jQuery);