
					<style scoped>

					

				li.opn-active-menu{background: rgb(241, 241, 241) !important;}

				li.opn-active-menu a {color: #333 !important;}
					</style>

					<script type="text/javascript">



						/*

						 * 	- 	Add VC_Row classes [with - support theme]

						 *  - 	Add Active Menu class

						 *-------------------------------------------------------------*/

						;(function ( $, window, undefined ) {

							var pluginName = 'OPN_Scroll',

							    document = window.document,

							    defaults = {

									vc_version: parseFloat('7.9'),

									activeItem: 'opn_active_menu',

									rowClass: 'vc_row',

									active: '',

									firstItem: false,

							    };



							function opn( element, options ) {

							  this.element = element;

							  this.options = $.extend( {}, defaults, options) ;

							  this._defaults = defaults;

							  this._name = pluginName;

							  this.init();

							}

						  	opn.prototype.init = function () {

							    var self = this;

							    var p = self._defaults;

							    var ac = p.activeItem;



							    //	Add active class

							    $('a[href*=\\#]:not([href=\\#])').bind('click touchstart', function(){

									$(this).parent('li').siblings().removeClass( ac );

									$(this).parent('li').addClass( ac );

								});



								if(typeof p.rowClass != 'undefined' && p.rowClass != null) {



									//	Add THEME Support for VC ROW ID from OPN

							        $('.opn-row-pre-element').each(function(index, el) {

									    var id = $(el).attr('data-id');

									    var gutter = $(el).attr('data-gutter');

									    var opn_enable_overlay = $(el).attr('data-opn_enable_overlay') || '';

									    var opn_hide_navigation = $(el).attr('data-opn_hide_navigation') || '';



									    //	set VC row class from user

									    var $row = $(el).prevAll('.'+p.rowClass+':first');

									    

									    $row.attr('data-op-gutter', gutter);

									    $row.attr('data-opn_enable_overlay', opn_enable_overlay);

									    $row.attr('data-opn_hide_navigation', opn_hide_navigation);

									    if (id != '') {

									    	//	Add ID for VC version <= 4.4

									    	/*if( parseFloat(p.vc_version) <= parseFloat(4.4) ) {*/

									    		//	Check VC version 4.5 set ROW ID

									    		//	if not found set OPN ID for row.



									    		/* 	Does not check VC version or Row has ID.

									    		 * 	Add ID for row Either VC or OPN.

									    		 * 	To fix theme ID's issue.

									    		 *------------------------------------------------------------*/

									    		var hasID = $row.attr('id') || '';

									    		if(hasID === 'undefined' || hasID === null || hasID==='') {

										        	$row.attr('id', id);

									    		}

									    	/*}*/

									    }

									    $(el).remove();

									});



							        //  Apply for 1 Scroll

									setTimeout(function(){

										$('.'+p.rowClass).each( function(index, elem) {

											var id = $(elem).attr('id') || null;

											if(typeof id!= 'undefined' && id != null) {



							                    // 	Get fist Item

							                    if( p.firstItem == false ) {

							                    	p.firstItem = id;

							                    	$('#'+p.firstItem).addClass('opn-active');

							                    	$('#'+p.firstItem).parent().addClass('opn-row-container');

							                    }

											}

										});

							        },700);

								}

	  						};

							$.fn[pluginName] = function ( options ) {

								return this.each(function () {

									if (!$.data(this, 'plugin_' + pluginName)) {

										$.data(this, 'plugin_' + pluginName, new opn( this, options ));

									}

								});

							}

							$(document).ready(function() {



								$('body').OPN_Scroll();



								//	on Visit Scroll to # link

								var opn_jump = function(e)

						        {

						        	var target = 'undefined';



						            if (e)

						            {

						                e.preventDefault();

						                if( !$(this).hasClass('.ui-tabs-anchor, .vc_tta-panel-title a, .vc_tta-tab a, .ult_tab_li a') ) {

						                	target = $(this).attr("href");

						                }

						            } else

						            {

						                target = location.hash;

						            }

						            if (typeof target === 'undefined' || target === '')

						                return false;

						            var gutter = $(target).attr('data-op-gutter');

						            if (typeof gutter === 'undefined')

						                gutter = 0;



						            $(target).animatescroll({

						                scrollSpeed: 1000,

						                easing: 'easeOutQuad',

						                padding: gutter

						            });

						            location.hash = target;

						            $(window).load(function(){

						                setTimeout(function(){

						                     $(target).animatescroll({

						                        scrollSpeed: 1000,

						                        easing: 'easeOutQuad',

						                        padding: gutter

						                    });

						                },500);

						            });

						        }



                                opn_jump();



                                //  Add EXCLUDE - Classes & ID's

                                //$('.ui-tabs-anchor, .vc_tta-panel-title a, .vc_tta-tab a, .ult_tab_li a').addClass('opn-exclude');

								 $('a[href*=\\#]').addClass('opn-exclude');

								 $('header .top-bar .main_nav li.menu-item-has-children > a').addClass('has_children');

								 $('header .top-bar .main_nav a[href*=\\#]:not(".has_children")').removeClass('opn-exclude');

								 $('header .top-bar #kp-mobile-menu li.menu-item-has-children > a').addClass('has_children');

								 $('header .top-bar #kp-mobile-menu a[href*=\\#]:not(".has_children")').removeClass('opn-exclude');

								 $('ul.opn_list li a[href*=\\#]').removeClass('opn-exclude');

								  

								 



                                /*

                                 *  on Click / Touch

                                 *--------------------------------------------------------*/

                                // For menu it will works

                                $("a[href*=\\#]:not('.opn-exclude')").bind('click', function(){

                                    if (location.pathname.replace(/\/$/, '') == this.pathname.replace(/\/$/, '') && location.hostname == this.hostname) {

                                        var target  = $(this.hash);

                                        target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');

                                        if (target.length) {

                                            var id = this.hash.slice(1);

                                            var gutter = $('#' + id).attr('data-op-gutter') || 0;



                                            $('#' + id).animatescroll({

                                                scrollSpeed: 1000,

                                                easing: "easeOutQuad",

                                                padding: gutter

                                            });

                                            return false;

                                        }

                                    }

                                });



							});

                            

					        $(document).on('click', "a[href*=\\#]:not('.opn-exclude')", function(e) {

					        //$(document).on('click touchstart', 'a[href*=#]:not([href=#]), a[href*=#]:not(".ui-tabs-anchor, .vc_tta-panel-title a, .vc_tta-tab a, .ult_tab_li a")', function(e) {

						        if (location.pathname.replace(/\/$/, '') == this.pathname.replace(/\/$/, '') && location.hostname == this.hostname) {

						            var target  = $(this.hash);



						            target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');

						            if (target.length) {



						            	var scroll_speed = 1000;

						                var scroll_effect = "easeOutQuad";

						                var id = this.hash.slice(1);

						                // Above settings works JUST for - One Page Navigator - Menu

						                var i = p = '';

						                $('.opn_fixed .opn_list').each(function(index, element) {

						                    var anch = $(element).find('a');

						                    anch.each(function(ind, elm) {

						                        var a = $(elm).attr('href');



						                        if(typeof a !== 'undefined' && a != null) {

						                            ind = a.split('#')[1];

						                            if(id == ind) {

						                                p = $(elm).parent().parent();

						                                scroll_speed = p.attr('data-scroll_speed') || 1000;

						                                scroll_effect = p.attr('data-scroll_effect') || "easeOutQuad";

						                            }

						                        }

						                    });

						                });

						                

						                var gutter = $('#' + id).attr('data-op-gutter') || 0;

						                scroll_speed = parseInt(scroll_speed);



						                $('#' + id).animatescroll({

						                    scrollSpeed: scroll_speed,

						                    easing: scroll_effect,

						                    padding: gutter

						                });

						                return false;

						            }

						        }

						    });



						}(jQuery, window));

				</script>

			
					<style scoped>

					

				li.opn-active-menu{background: rgb(241, 241, 241) !important;}

				li.opn-active-menu a {color: #333 !important;}
					</style>

					<script type="text/javascript">



						/*

						 * 	- 	Add VC_Row classes [with - support theme]

						 *  - 	Add Active Menu class

						 *-------------------------------------------------------------*/

						;(function ( $, window, undefined ) {

							var pluginName = 'OPN_Scroll',

							    document = window.document,

							    defaults = {

									vc_version: parseFloat('7.9'),

									activeItem: 'opn_active_menu',

									rowClass: 'vc_row',

									active: '',

									firstItem: false,

							    };



							function opn( element, options ) {

							  this.element = element;

							  this.options = $.extend( {}, defaults, options) ;

							  this._defaults = defaults;

							  this._name = pluginName;

							  this.init();

							}

						  	opn.prototype.init = function () {

							    var self = this;

							    var p = self._defaults;

							    var ac = p.activeItem;



							    //	Add active class

							    $('a[href*=\\#]:not([href=\\#])').bind('click touchstart', function(){

									$(this).parent('li').siblings().removeClass( ac );

									$(this).parent('li').addClass( ac );

								});



								if(typeof p.rowClass != 'undefined' && p.rowClass != null) {



									//	Add THEME Support for VC ROW ID from OPN

							        $('.opn-row-pre-element').each(function(index, el) {

									    var id = $(el).attr('data-id');

									    var gutter = $(el).attr('data-gutter');

									    var opn_enable_overlay = $(el).attr('data-opn_enable_overlay') || '';

									    var opn_hide_navigation = $(el).attr('data-opn_hide_navigation') || '';



									    //	set VC row class from user

									    var $row = $(el).prevAll('.'+p.rowClass+':first');

									    

									    $row.attr('data-op-gutter', gutter);

									    $row.attr('data-opn_enable_overlay', opn_enable_overlay);

									    $row.attr('data-opn_hide_navigation', opn_hide_navigation);

									    if (id != '') {

									    	//	Add ID for VC version <= 4.4

									    	/*if( parseFloat(p.vc_version) <= parseFloat(4.4) ) {*/

									    		//	Check VC version 4.5 set ROW ID

									    		//	if not found set OPN ID for row.



									    		/* 	Does not check VC version or Row has ID.

									    		 * 	Add ID for row Either VC or OPN.

									    		 * 	To fix theme ID's issue.

									    		 *------------------------------------------------------------*/

									    		var hasID = $row.attr('id') || '';

									    		if(hasID === 'undefined' || hasID === null || hasID==='') {

										        	$row.attr('id', id);

									    		}

									    	/*}*/

									    }

									    $(el).remove();

									});



							        //  Apply for 1 Scroll

									setTimeout(function(){

										$('.'+p.rowClass).each( function(index, elem) {

											var id = $(elem).attr('id') || null;

											if(typeof id!= 'undefined' && id != null) {



							                    // 	Get fist Item

							                    if( p.firstItem == false ) {

							                    	p.firstItem = id;

							                    	$('#'+p.firstItem).addClass('opn-active');

							                    	$('#'+p.firstItem).parent().addClass('opn-row-container');

							                    }

											}

										});

							        },700);

								}

	  						};

							$.fn[pluginName] = function ( options ) {

								return this.each(function () {

									if (!$.data(this, 'plugin_' + pluginName)) {

										$.data(this, 'plugin_' + pluginName, new opn( this, options ));

									}

								});

							}

							$(document).ready(function() {



								$('body').OPN_Scroll();



								//	on Visit Scroll to # link

								var opn_jump = function(e)

						        {

						        	var target = 'undefined';



						            if (e)

						            {

						                e.preventDefault();

						                if( !$(this).hasClass('.ui-tabs-anchor, .vc_tta-panel-title a, .vc_tta-tab a, .ult_tab_li a') ) {

						                	target = $(this).attr("href");

						                }

						            } else

						            {

						                target = location.hash;

						            }

						            if (typeof target === 'undefined' || target === '')

						                return false;

						            var gutter = $(target).attr('data-op-gutter');

						            if (typeof gutter === 'undefined')

						                gutter = 0;



						            $(target).animatescroll({

						                scrollSpeed: 1000,

						                easing: 'easeOutQuad',

						                padding: gutter

						            });

						            location.hash = target;

						            $(window).load(function(){

						                setTimeout(function(){

						                     $(target).animatescroll({

						                        scrollSpeed: 1000,

						                        easing: 'easeOutQuad',

						                        padding: gutter

						                    });

						                },500);

						            });

						        }



                                opn_jump();



                                //  Add EXCLUDE - Classes & ID's

                                //$('.ui-tabs-anchor, .vc_tta-panel-title a, .vc_tta-tab a, .ult_tab_li a').addClass('opn-exclude');

								 $('a[href*=\\#]').addClass('opn-exclude');

								 $('header .top-bar .main_nav li.menu-item-has-children > a').addClass('has_children');

								 $('header .top-bar .main_nav a[href*=\\#]:not(".has_children")').removeClass('opn-exclude');

								 $('header .top-bar #kp-mobile-menu li.menu-item-has-children > a').addClass('has_children');

								 $('header .top-bar #kp-mobile-menu a[href*=\\#]:not(".has_children")').removeClass('opn-exclude');

								 $('ul.opn_list li a[href*=\\#]').removeClass('opn-exclude');

								  

								 



                                /*

                                 *  on Click / Touch

                                 *--------------------------------------------------------*/

                                // For menu it will works

                                $("a[href*=\\#]:not('.opn-exclude')").bind('click', function(){

                                    if (location.pathname.replace(/\/$/, '') == this.pathname.replace(/\/$/, '') && location.hostname == this.hostname) {

                                        var target  = $(this.hash);

                                        target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');

                                        if (target.length) {

                                            var id = this.hash.slice(1);

                                            var gutter = $('#' + id).attr('data-op-gutter') || 0;



                                            $('#' + id).animatescroll({

                                                scrollSpeed: 1000,

                                                easing: "easeOutQuad",

                                                padding: gutter

                                            });

                                            return false;

                                        }

                                    }

                                });



							});

                            

					        $(document).on('click', "a[href*=\\#]:not('.opn-exclude')", function(e) {

					        //$(document).on('click touchstart', 'a[href*=#]:not([href=#]), a[href*=#]:not(".ui-tabs-anchor, .vc_tta-panel-title a, .vc_tta-tab a, .ult_tab_li a")', function(e) {

						        if (location.pathname.replace(/\/$/, '') == this.pathname.replace(/\/$/, '') && location.hostname == this.hostname) {

						            var target  = $(this.hash);



						            target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');

						            if (target.length) {



						            	var scroll_speed = 1000;

						                var scroll_effect = "easeOutQuad";

						                var id = this.hash.slice(1);

						                // Above settings works JUST for - One Page Navigator - Menu

						                var i = p = '';

						                $('.opn_fixed .opn_list').each(function(index, element) {

						                    var anch = $(element).find('a');

						                    anch.each(function(ind, elm) {

						                        var a = $(elm).attr('href');



						                        if(typeof a !== 'undefined' && a != null) {

						                            ind = a.split('#')[1];

						                            if(id == ind) {

						                                p = $(elm).parent().parent();

						                                scroll_speed = p.attr('data-scroll_speed') || 1000;

						                                scroll_effect = p.attr('data-scroll_effect') || "easeOutQuad";

						                            }

						                        }

						                    });

						                });

						                

						                var gutter = $('#' + id).attr('data-op-gutter') || 0;

						                scroll_speed = parseInt(scroll_speed);



						                $('#' + id).animatescroll({

						                    scrollSpeed: scroll_speed,

						                    easing: scroll_effect,

						                    padding: gutter

						                });

						                return false;

						            }

						        }

						    });



						}(jQuery, window));

				</script>

			{"id":6807,"date":"2016-05-30T19:19:49","date_gmt":"2016-05-30T19:19:49","guid":{"rendered":"http:\/\/www.katonpress.net\/themes\/zad\/portfolio\/?page_id=6807"},"modified":"2020-05-19T20:38:34","modified_gmt":"2020-05-19T20:38:34","slug":"home","status":"publish","type":"page","link":"http:\/\/closedloopwoodworks.com\/site\/","title":{"rendered":"Home"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; stick_row=&#8221;enable_stick&#8221; animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243;][vc_column stick_col=&#8221;off&#8221; animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243; overlay_opacity=&#8221;0&#8243; overlay_opacity_on_hover=&#8221;1&#8243;][zad_portfolio portfolio_style=&#8221;grid&#8221; column=&#8221;4&#8243; enable_spacing=&#8221;true&#8221; spacing_limit=&#8221;5&#8243; orderby=&#8221;menu_order&#8221; hover_style=&#8221;selena&#8221; hover_color_style=&#8221;single_color&#8221; hover_opacity=&#8221;0.5&#8243; image_opacity=&#8221;1&#8243; portfolio_link=&#8221;single_link&#8221; enable_excerpt=&#8221;enable_excerpt&#8221; enable_filter=&#8221;off&#8221; enable_pagination=&#8221;enable_pagination&#8221; pagination_style=&#8221;infinity&#8221; items_per_page=&#8221;8&#8243; desc_font_color=&#8221;#ffffff&#8221; excerpt_length=&#8221;60&#8243;][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243;]<\/p>\n<h2>Click <a href=\"https:\/\/www.etsy.com\/shop\/ClosedLoopWoodworks?ref=search_shop_redirect\"><span style=\"text-decoration: underline;\">here<\/span><\/a> to purchase and see my latest products.<\/h2>\n<h2>Ethos&#8230;so much high-quality wood ends up in the landfill, reduced to wood chips &amp; mulch\u00a0or burned. I try to find &amp; salvage as much of it as I can by turning it into aesthetically pleasing, functional art built for everyday life. Each piece is unique &amp; crafted of varying types of wood. I hope you enjoy this creation as much as I enjoyed making it.<\/h2>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243; overlay_opacity=&#8221;0&#8243; overlay_opacity_on_hover=&#8221;1&#8243; width=&#8221;1\/3&#8243; link=&#8221;url:http%3A%2F%2Fclosedloopwoodworks.com%2Fsite%2Fend-grain-cutting-boards%2F|||&#8221;][vc_single_image image=&#8221;7095&#8243; img_size=&#8221;800&#215;600&#8243; onclick=&#8221;custom_link&#8221; animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243; link=&#8221;http:\/\/closedloopwoodworks.com\/site\/end-grain-cutting-boards\/&#8221;][vc_column_text animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243;]<\/p>\n<h5 style=\"text-align: center;\"><a href=\"http:\/\/closedloopwoodworks.com\/site\/end-grain-cutting-boards\/\"><strong>End Grain Cutting Boards<\/strong><\/a><\/h5>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/3&#8243;][vc_single_image image=&#8221;7188&#8243; img_size=&#8221;800&#215;600&#8243; onclick=&#8221;custom_link&#8221; animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243; link=&#8221;http:\/\/closedloopwoodworks.com\/site\/cribbage-boards\/&#8221;][vc_column_text animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243;]<\/p>\n<h5 style=\"text-align: center;\"><a href=\"http:\/\/closedloopwoodworks.com\/site\/cribbage-boards\/\"><strong>Cribbage Boards<\/strong><\/a><\/h5>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/3&#8243;][vc_single_image image=&#8221;7094&#8243; img_size=&#8221;800&#215;600&#8243; onclick=&#8221;custom_link&#8221; animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243; link=&#8221;http:\/\/closedloopwoodworks.com\/site\/state-shaped-cutting-boards\/&#8221;][vc_column_text animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243;]<\/p>\n<h5 style=\"text-align: center;\"><a href=\"http:\/\/closedloopwoodworks.com\/site\/state-shaped-cutting-boards\/\"><strong>State Shaped Cutting Boards<\/strong><\/a><\/h5>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/3&#8243;][vc_single_image image=&#8221;7163&#8243; img_size=&#8221;800&#215;600&#8243; onclick=&#8221;custom_link&#8221; animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243; link=&#8221;http:\/\/closedloopwoodworks.com\/site\/pet-feeders\/&#8221;][vc_column_text animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243;]<\/p>\n<h5 style=\"text-align: center;\"><a href=\"http:\/\/closedloopwoodworks.com\/site\/pet-feeders\/\"><strong>Pet Feeders<\/strong><\/a><\/h5>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/3&#8243;][vc_single_image image=&#8221;7167&#8243; img_size=&#8221;800&#215;600&#8243; onclick=&#8221;custom_link&#8221; animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243; link=&#8221;http:\/\/closedloopwoodworks.com\/site\/home-accessories\/&#8221;][vc_column_text animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243;]<\/p>\n<h5 style=\"text-align: center;\"><a href=\"http:\/\/closedloopwoodworks.com\/site\/home-accessories\/\"><strong>Home &amp; Accessories<\/strong><\/a><\/h5>\n<p>[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/3&#8243;][vc_single_image image=&#8221;6931&#8243; img_size=&#8221;800&#215;600&#8243; onclick=&#8221;custom_link&#8221; animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243; link=&#8221;http:\/\/closedloopwoodworks.com\/site\/phone-tablet-stands\/&#8221;][vc_column_text animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243;]<\/p>\n<h5 style=\"text-align: center;\"><a href=\"http:\/\/closedloopwoodworks.com\/site\/phone-tablet-stands\/\"><strong>Phone &amp; Tablet Holder<\/strong><\/a><\/h5>\n<p>[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column width=&#8221;1\/4&#8243;][\/vc_column][vc_column width=&#8221;1\/4&#8243;][\/vc_column][vc_column width=&#8221;1\/4&#8243;][\/vc_column][vc_column width=&#8221;1\/4&#8243;][vc_single_image image=&#8221;7307&#8243; img_size=&#8221;50&#215;50&#8243; onclick=&#8221;custom_link&#8221; animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243; link=&#8221;https:\/\/www.facebook.com\/closedloopwoodworks\/&#8221;][vc_single_image image=&#8221;7308&#8243; img_size=&#8221;50&#215;50&#8243; onclick=&#8221;custom_link&#8221; animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243; link=&#8221;https:\/\/www.instagram.com\/closedloopww\/&#8221;][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; stick_row=&#8221;enable_stick&#8221; animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243;][vc_column stick_col=&#8221;off&#8221; animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243; overlay_opacity=&#8221;0&#8243; overlay_opacity_on_hover=&#8221;1&#8243;][zad_portfolio portfolio_style=&#8221;grid&#8221; column=&#8221;4&#8243; enable_spacing=&#8221;true&#8221; spacing_limit=&#8221;5&#8243; orderby=&#8221;menu_order&#8221; hover_style=&#8221;selena&#8221; hover_color_style=&#8221;single_color&#8221; hover_opacity=&#8221;0.5&#8243; image_opacity=&#8221;1&#8243; portfolio_link=&#8221;single_link&#8221; enable_excerpt=&#8221;enable_excerpt&#8221; enable_filter=&#8221;off&#8221; enable_pagination=&#8221;enable_pagination&#8221; pagination_style=&#8221;infinity&#8221; items_per_page=&#8221;8&#8243; desc_font_color=&#8221;#ffffff&#8221; excerpt_length=&#8221;60&#8243;][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text animation_duration=&#8221;1&#8243; animation_delay=&#8221;0&#8243;] Click here to purchase and see my latest products. Ethos&#8230;so much high-quality wood ends up in the landfill, reduced to wood chips &amp; mulch\u00a0or burned. I <a class=\"read-more\" href=\"http:\/\/closedloopwoodworks.com\/site\/\">READ MORE<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-6807","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"http:\/\/closedloopwoodworks.com\/site\/wp-json\/wp\/v2\/pages\/6807","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/closedloopwoodworks.com\/site\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"http:\/\/closedloopwoodworks.com\/site\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"http:\/\/closedloopwoodworks.com\/site\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/closedloopwoodworks.com\/site\/wp-json\/wp\/v2\/comments?post=6807"}],"version-history":[{"count":34,"href":"http:\/\/closedloopwoodworks.com\/site\/wp-json\/wp\/v2\/pages\/6807\/revisions"}],"predecessor-version":[{"id":7319,"href":"http:\/\/closedloopwoodworks.com\/site\/wp-json\/wp\/v2\/pages\/6807\/revisions\/7319"}],"wp:attachment":[{"href":"http:\/\/closedloopwoodworks.com\/site\/wp-json\/wp\/v2\/media?parent=6807"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}