
    <script type='text/javascript'>
    jQuery(document).ready(function() {
        jQuery('#calendar').fullCalendar({
            header: {
                left: 'prev,next today',
                center: 'title',
                right: 'month,agendaWeek,agendaDay'
            },
            titleFormat: {
                month: ' MMMM yyyy',                                // September 2009
                week: "MMM d[ yyyy]{ '&#8212;'[ MMM] d yyyy}",      // Sep 7 - 13 2009
                day: 'dddd, MMM d, yyyy'                            // Tuesday, Sep 8, 2009
            },
            editable: false,
            weekends: true,
            timeFormat: 'h:mm{-h:mmtt }',
            axisFormat: 'h:mm{-h:mmtt }',
                        firstDay: 1,
            slotMinutes: 15,
            defaultView: 'month',
            minTime: 9,

            maxTime: 17,
            monthNames: ["January","February","March","April","May","June","July", "August", "September", "October", "November", "December" ],
            monthNamesShort: ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec"],
            dayNames: ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],
            dayNamesShort: ["Sun","Mon", "Tue", "Wed", "Thus", "Fri", "Sat"],
            buttonText: {
                today: "Today",
                day: "Day",
                week:"Week",
                month:"Month"
            },
            selectable: false,
            selectHelper: false,
            select: function(start, end, allDay) {
                    jQuery('#AppFirstModal').show();
                },

            events: [
                                        {
                        }
            ]
        });

        //jQuery UI date picker on modal for
        //document.addnewappointment.appdate.value = jQuery.datepicker.formatDate('', new Date());
        /*jQuery(function(){
            jQuery("#datepicker").datepicker({
                inline: true,
                minDate: 0,
                altField: '#alternate',
                firstDay: ,
                //beforeShowDay: unavailable,
                onSelect: function(dateText, inst) {
                    var dateAsString = dateText;
                    var seleteddate = jQuery.datepicker.formatDate('', new Date(dateAsString));
                    var seleteddate2 = jQuery.datepicker.formatDate('dd-mm-yy', new Date(dateAsString));
                    document.addnewappointment.appdate.value = seleteddate;
                },
            });
            //jQuery( "#datepicker" ).datepicker( jQuery.datepicker.regional[ "af" ] );
        });*/

        //Modal Form Works - show frist modal
        jQuery('#addappointment').click(function(){
            var todaydate = jQuery.fullCalendar.formatDate(new Date(),'dd-MM-yyyy');
            jQuery('#appdate').val(todaydate);
            jQuery('#AppFirstModal').show();
        });

        //hide modal
        jQuery('#close').click(function(){
            jQuery('#AppFirstModal').hide();
        });

        //AppFirstModal Validation
        jQuery('#next1').click(function(){
            jQuery(".apcal-error").hide();
            if(jQuery('#service').val() == 0) {
                jQuery("#service").after("<span class='apcal-error'><br><strong>Select any service.</strong></span>");
                return false;
            }
            var ServiceId =  jQuery('#service').val();
            var AppDate =  jQuery('#appdate').val();
            var SecondData = "ServiceId=" + ServiceId + "&AppDate=" + AppDate;
            jQuery('#loading1').show(); // loading button onclick next1 at first modal
            jQuery('#next1').hide();    // hide next button
            jQuery.ajax({
            dataType : 'html',
            type: 'GET',
            url : location.href,
            cache: false,
            data : SecondData,
            complete : function() {  },
            success: function(data) {
                    data = jQuery(data).find('div#AppSecondModal');
                    jQuery('#loading1').hide();
                    jQuery('#AppFirstModal').hide();
                    jQuery('#AppSecondModalDiv').show();
                    jQuery('#AppSecondModalDiv').html(data);
                }
            });
        });

        //Second Modal form validation
        jQuery('#booknowapp').click(function(){
            jQuery(".apcal-error").hide();
            var start_time = jQuery('input[name=start_time]:radio:checked').val();
            if(!start_time) {
                jQuery("#selecttimediv").after("<span class='apcal-error'><br><strong>Select any time.</strong></span>");
                return false;
            }

            if( !jQuery('#clientname').val() ) {
                jQuery("#clientname").after("<span class='apcal-error'><br><strong>Name required.</strong></span>");
                return false;
            } else if(!isNaN( jQuery('#clientname').val() )) {
                jQuery("#clientname").after("<span class='apcal-error'><p><strong>Invalid name.</strong></p></span>");
                return false;
            }

            var regex = /^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
            if( !jQuery('#clientemail').val() ) {
                jQuery("#clientemail").after("<span class='apcal-error'><br><strong>Email required.</strong></span>");
                return false;
            } else {
                if(regex.test(jQuery('#clientemail').val()) == false ) {
                    jQuery("#clientemail").after("<span class='apcal-error'><p><strong>Invalid Email.</strong></p></span>");
                    return false;
                }
            }

            if( !jQuery('#clientphone').val() ) {
                jQuery("#clientphone").after("<span class='apcal-error'><br><strong>Phone required.</strong></span>");
                return false;
            } else if(isNaN( jQuery('#clientphone').val() )) {
                jQuery("#clientphone").after("<span class='apcal-error'><p><strong>Invalid phone number.</strong></p></span>");
                return false;
            }
        });

        //back button show first modal
        jQuery('#back').click(function(){
            jQuery('#AppFirstModal').show();
            jQuery('#AppSecondModal').hide();
        });
    });


    //Modal Form Works
    function Backbutton() {
        jQuery('#AppFirstModal').show();
        jQuery('#AppSecondModalDiv').hide();
        jQuery('#next1').show();
    }

    //validation on second modal form submissions == appointment_register_nonce_field
    function CheckValidation() {
        jQuery(".apcal-error").hide();
        var start_time = jQuery('input[name=start_time]:radio:checked').val();
        if(!start_time) {
            jQuery("#selecttimediv").after("<p style='width:350px; padding:2px;' class='apcal-error'><strong>Select any time.</strong></p>");
            return false;
        }

        if( !jQuery('#clientname').val() ) {
            jQuery("#clientname").after("<span class='apcal-error'><br><strong>Name required.</strong></span>");
            return false;
        } else if(!isNaN( jQuery('#clientname').val() )) {
            jQuery("#clientname").after("<span class='apcal-error'><br><strong>Invalid Name</strong></span>");
            return false;
        }

        var regex = /^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
        if( !jQuery('#clientemail').val() ) {
            jQuery("#clientemail").after("<span class='apcal-error'><br><strong>Email required.</strong></span>");
            return false;
        } else {
            if(regex.test(jQuery('#clientemail').val()) == false ) {
                jQuery("#clientemail").after("<span class='apcal-error'><br><strong>Invalid Email</strong></span>");
                return false;
            }
        }

        if( !jQuery('#clientphone').val() ) {
            jQuery("#clientphone").after("<span class='apcal-error'><br><strong>Phone required.</strong></span>");
            return false;
        } else if(isNaN( jQuery('#clientphone').val() )) {
            jQuery("#clientphone").after("<span class='apcal-error'><br><strong>Invalid phone number.</strong></span>");
            return false;
        }
		
		var wp_nonce = jQuery('#appointment_register_nonce_field').val();
		 
        var ServiceId = jQuery('#serviceid').val();
        var AppDate = jQuery('#appointmentdate').val();
        var  ServiceDuration =  jQuery('#serviceduration').val();
        var StartTime = jQuery('input[name=start_time]:radio:checked').val();
        var Client_Name =  jQuery('#clientname').val();
        var Client_Email =  jQuery('#clientemail').val();
        var Client_Phone =  jQuery('#clientphone').val();
        var Client_Note =  jQuery('#clientnote').val();
        var currenturl = jQuery(location).attr('href');
        var SecondData = "ServiceId=" + ServiceId + "&AppDate=" + AppDate + "&StartTime=" + StartTime + '&Client_Name=' + Client_Name +'&Client_Email=' + Client_Email +'&Client_Phone=' + Client_Phone +'&Client_Note=' + Client_Note+'&Service_Duration=' + ServiceDuration + '&wp_nonce=' + wp_nonce;
        var currenturl = jQuery(location).attr('href');
        var url = currenturl;
        jQuery('#loading2').show();     // loading button onclick next1 at first modal
        jQuery('#buttonbox').hide();    // loading button onclick book now at first modal
        jQuery.ajax({
            dataType : 'html',
            type: 'POST',
            url : url,
            cache: false,
            data : SecondData,
            complete : function() {  },
            success: function() {
                jQuery('#AppSecondModalDiv').hide();
                alert("Thank you for scheduling appointment with us. A confirmation mail will be forward to you soon after admin approval.");
                var currenturl = jQuery(location).attr('href');
                var url = currenturl.replace("#","");
                window.location = url;
            }
        });
    }
    </script>
    <style type='text/css'>
    .apcal-error{
        color: #FF0000;
    }
    </style>

    <!---Display Booking Instruction--->
        <div id="bookinginstructions" align="center">
        If you need to book an on-Slack support session - you can request a booking to be confirmed here.  You must have a current Introductory plan or a Development project ongoing or live.    </div>
    
    <!---Schedule New New Appointment Button--->
    <div id="bkbtndiv" align="center" style="padding:5px;">
        <button name="addappointment" class="apcal_btn apcal_btn-primary apcal_btn-large" type="submit" id="addappointment">
            <strong></strong><i class="icon-calendar icon-white"></i>
                Schedule An Appointment            </strong>
        </button>
    </div>

    <!---Show appointment calendar--->
    <div id='calendar'>
        <div align="right">Appointment Calendar Powered By: <a href="http://appointzilla.com/" title="Appointment Scheduling plugin for Wordpress" target="_blank">AppointZilla</a></div>
        <!---AppSecondModal For Schedule New Appointment--->
        <div id="AppSecondModalDiv" style="display:none;"></div>
    </div>


    <!---AppFirstModal For Schedule New Appointment--->
    <div id="AppFirstModal" style="display:none">
        <div class="apcal_modal" id="myModal" style="z-index:99999;">
            <form action="" method="post" name="addnewappointment" id="addnewappointment" >
                <div class="apcal_modal-info">
                    <div class="apcal_alert apcal_alert-info">
                        <div><a href="#" style="float:right; margin-right:-4px;" id="close"><i class="icon-remove"></i></a>
                        </div>
                        <p><strong>Schedule New Appointment</strong></p>
                        <div>Select Date & Service</div>
                    </div>
                </div>

                <div class="apcal_modal-body">
                    <div id="firdiv" style="float:left;">
                        <div id="datepicker"></div>

                         <!--PHP Date-picker -->
                         <form id="form1" name="form1" method="post" action="">
						 
                         <SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript">
<!--
//	JS strings
	var l_lang = "en";
	var l_sel_date = "Select Date";
	var l_not_allowed = "This date is not allowed to be selected";
	var l_date_before = "Please choose a date before %s";
	var l_date_after = "Please choose a date after %s";
	var l_date_between = "Please choose a date between\n%s and %s";
	var l_use_ymd_drop = "0";
	var l_day = "Day";
	var l_month = "Month";
	var l_year = "Year";
//	Long Month Names
	var l_january = "January";
	var l_february = "February";
	var l_march = "March";
	var l_april = "April";
	var l_may = "May";
	var l_june = "June";
	var l_july = "July";
	var l_august = "August";
	var l_september = "September";
	var l_october = "October";
	var l_november = "November";
	var l_december = "December";
if(l_lang == "el_GR"){
//	Date Month Names Greek
	var l_januaryu = "";
	var l_februaryu = "";
	var l_marchu = "";
	var l_aprilu = "";
	var l_mayu = "";
	var l_juneu = "";
	var l_julyu = "";
	var l_augustu = "";
	var l_septemberu = "";
	var l_octoberu = "";
	var l_novemberu = "";
	var l_decemberu = "";
}
//	Short Month Names
	var s_jan = "Jan";
	var s_feb = "Feb";
	var s_mar = "Mar";
	var s_apr = "Apr";
	var s_may = "May";
	var s_jun = "Jun";
	var s_jul = "Jul";
	var s_aug = "Aug";
	var s_sep = "Sep";
	var s_oct = "Oct";
	var s_nov = "Nov";
	var s_dec = "Dec";
//	Long Day Names
	var l_monday = "Monday";
	var l_tuesday = "Tuesday";
	var l_wednesday = "Wednesday";
	var l_thursday = "Thursday";
	var l_friday = "Friday";
	var l_saturday = "Saturday";
	var l_sunday = "Sunday";
//	Short Day Names
	var s_mon = "Mo";
	var s_tue = "Tu";
	var s_wed = "We";
	var s_thu = "Th";
	var s_fri = "Fr";
	var s_sat = "Sa";
	var s_sun = "Su";
// -->
</SCRIPT>
<input type="hidden" name="date1" id="date1" value="2026-04-17" /><input type="hidden" name="date1_dp" id="date1_dp" value="" /><input type="hidden" name="date1_year_start" id="date1_year_start" value="2026" /><input type="hidden" name="date1_year_end" id="date1_year_end" value="2035" /><input type="hidden" name="date1_da1" id="date1_da1" value="1776297600" /><input type="hidden" name="date1_da2" id="date1_da2" value="2051222400" /><input type="hidden" name="date1_sna" id="date1_sna" value="" /><input type="hidden" name="date1_aut" id="date1_aut" value="" /><input type="hidden" name="date1_frm" id="date1_frm" value="" /><input type="hidden" name="date1_tar" id="date1_tar" value="" /><input type="hidden" name="date1_inp" id="date1_inp" value="1" /><input type="hidden" name="date1_fmt" id="date1_fmt" value="F j, Y" /><input type="hidden" name="date1_dis" id="date1_dis" value="" /><input type="hidden" name="date1_pr1" id="date1_pr1" value="" /><input type="hidden" name="date1_pr2" id="date1_pr2" value="" /><input type="hidden" name="date1_prv" id="date1_prv" value="" /><input type="hidden" name="date1_pth" id="date1_pth" value="https://www.remotedevelopment.co.uk/cms/wp-content/plugins/appointment-calendar/calendar/" /><input type="hidden" name="date1_spd" id="date1_spd" value="[[],[],[]]" /><input type="hidden" name="date1_spt" id="date1_spt" value="0" /><input type="hidden" name="date1_och" id="date1_och" value="myChanged%28%29" /><input type="hidden" name="date1_str" id="date1_str" value="0" /><input type="hidden" name="date1_rtl" id="date1_rtl" value="0" /><input type="hidden" name="date1_wks" id="date1_wks" value="" /><input type="hidden" name="date1_int" id="date1_int" value="1" /><input type="hidden" name="date1_hid" id="date1_hid" value="1" /><input type="hidden" name="date1_hdt" id="date1_hdt" value="1000" /><input type="hidden" name="date1_hl" id="date1_hl" value="en" /><div id="div_date1" style="position:relative;visibility:visible;z-index:100;;margin-left:20px" class="div_calendar calendar-border"   onmouseover="javascript:cancelHide('date1');"><IFRAME id="date1_frame" src="https://www.remotedevelopment.co.uk/cms/wp-content/plugins/appointment-calendar/calendar/calendar_form.php?objname=date1&selected_day=17&selected_month=04&selected_year=2026&year_start=2026&year_end=2035&dp=0&da1=1776297600&da2=2051222400&sna=&aut=&frm=&tar=&inp=1&fmt=F j, Y&dis=&pr1=&pr2=&prv=&pth=https://www.remotedevelopment.co.uk/cms/wp-content/plugins/appointment-calendar/calendar/&spd=[[],[],[]]&spt=0&och=myChanged%28%29&str=0&rtl=0&wks=&int=1&hid=1&hdt=1000&hl=en" frameBorder="0" scrolling="no" allowtransparency="true" width="250px" height="100%" style="z-index: 100;height:201px;" margin-left=20px></IFRAME></div>							
                        </form>

                        <script language="javascript">
                        function myChanged() {
                            var x = document.getElementById('date1').value;
                            x = moment(x).format('DD-MM-YYYY');
                            document.getElementById('appdate').value = x;
                        }
                        </script>
                    </div>

                    <div id="secdiv" style="float:right;">
                        <strong>Your Appointment Date:</strong><br>
                        <input name="appdate" id="appdate" type="text" readonly="" height="30px;" style="height:30px;" />
                        
												
						<br /><br />
                        <strong>Select Service:</strong><br />
                        <select name="service" id="service">
                            <option value="0">Select Service</option>
                                                                                                                                            <option value="1">
                                        Default (30min/$100)                                    </option>
                                                        </select>
                        <br>
                        <button name="next1" class="apcal_btn" type="button" id="next1" value="next1">Next <i class="icon-arrow-right"></i></button>
                        <div id="loading1" style="display:none;">Loading...<img src="https://www.remotedevelopment.co.uk/cms/wp-content/plugins/appointment-calendar/images/loading.gif" /></div>
                    </div>
                </div>
            </form>
          </div>
    </div>
    <!---AppSecondModal For Schedule New Appointment--->
	
    {"id":664,"date":"2017-09-27T16:11:24","date_gmt":"2017-09-27T16:11:24","guid":{"rendered":"http:\/\/www.remotedevelopment.co.uk\/cms\/?p=664"},"modified":"2017-09-27T21:23:20","modified_gmt":"2017-09-27T21:23:20","slug":"event-software","status":"publish","type":"post","link":"https:\/\/www.remotedevelopment.co.uk\/cms\/event-software\/","title":{"rendered":"Event software"},"content":{"rendered":"<p>CMS Users<\/p>\n<p>WordPress has a number of plugins for managing events, some of this are not the same as the others!<\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/www.fooevents.com\/\" target=\"_blank\" rel=\"noopener\">fooevents<\/a> &#8211; extensive ticket printing and calendar based woo-commerce plugin<\/p>\n<p>cost and budget for implementation \u00a3250 &#8211; \u00a3750<\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/wordpress.org\/plugins\/wp-event-booking-manager\/\">WordPress Event Booking Manager<\/a><\/p>\n<p>Free, with Pro upgrade &#8211; for ticket selling to events<\/p>\n<p>&nbsp;<\/p>\n<p>Appointment management<\/p>\n<p>Testing a plugin &#8211; book a session<\/p>\n<p><strong><\/strong><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>CMS Users WordPress has a number of plugins for managing events, some of this are not the same as the others! &nbsp; fooevents &#8211; extensive ticket printing and calendar based woo-commerce plugin cost and budget for implementation \u00a3250 &#8211; \u00a3750 &nbsp; WordPress Event Booking Manager Free, with Pro upgrade &#8211; for ticket selling to events &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.remotedevelopment.co.uk\/cms\/event-software\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Event software&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_newsletter_tier_id":0,"footnotes":"","jetpack_publicize_message":"","jetpack_is_tweetstorm":false,"jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[5],"tags":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8yghz-aI","jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":386,"url":"https:\/\/www.remotedevelopment.co.uk\/cms\/agile\/","url_meta":{"origin":664,"position":0},"title":"Agile","author":"Nicholas Alexander","date":"August 23, 2017","format":false,"excerpt":"Agile Software Development was developed by some of the best minds in our industry. Years ago. Since 1998 it has become the way to do things. Short Iterations We use 10 day sprints (over two weeks). During each Sprint, we follow a sprint plan. We need two basic sprint plans\u2026","rel":"","context":"In &quot;technical&quot;","block_context":{"text":"technical","link":"https:\/\/www.remotedevelopment.co.uk\/cms\/category\/technical\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":847,"url":"https:\/\/www.remotedevelopment.co.uk\/cms\/ideas-for-development\/","url_meta":{"origin":664,"position":1},"title":"Ideas for development","author":"Nicholas","date":"January 6, 2018","format":false,"excerpt":"collectors list a user-curated list of items with urls that can be scraped for current price alerts set when prices change ebay listings created with email confirmation when target prices are attained users items lists events messages a state machine that knows the disposition of each message, event, item cached\u2026","rel":"","context":"In &quot;Admin&quot;","block_context":{"text":"Admin","link":"https:\/\/www.remotedevelopment.co.uk\/cms\/category\/admin\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":787,"url":"https:\/\/www.remotedevelopment.co.uk\/cms\/bdd-framework-for-wordpress\/","url_meta":{"origin":664,"position":2},"title":"BDD Framework for WordPress","author":"Nicholas","date":"January 9, 2018","format":false,"excerpt":"An end-to-end test detects issues whenever there is a major system change. In software development, with every release, a battery of unit tests must pass or business can be lost. Yes, software testing is difficult. It sounds like it is reactive but it is preventative. Do you have a defined\u2026","rel":"","context":"In &quot;Site Strategy&quot;","block_context":{"text":"Site Strategy","link":"https:\/\/www.remotedevelopment.co.uk\/cms\/category\/technical\/site-strategy\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":521,"url":"https:\/\/www.remotedevelopment.co.uk\/cms\/ideas-section\/","url_meta":{"origin":664,"position":3},"title":"Ideas section","author":"Nicholas","date":"September 7, 2017","format":false,"excerpt":"Recording a methodology section of Wordpress plugin installs. \u00a0Anyone can contribute pages: in menu Anyone can contribute pages: in menu Methods: Relationships: Developers: ideas Simple format is: * Audience * Idea * How tested * Conclusion * Recommendation","rel":"","context":"In &quot;technical&quot;","block_context":{"text":"technical","link":"https:\/\/www.remotedevelopment.co.uk\/cms\/category\/technical\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":840,"url":"https:\/\/www.remotedevelopment.co.uk\/cms\/funding-the-project\/","url_meta":{"origin":664,"position":4},"title":"Funding the project","author":"Nicholas","date":"December 26, 2017","format":false,"excerpt":"Remote Development is entering a round of funding. Here are some of our ideas and ideals to make this happen. Purpose Working in the tech development field and with artists provides a meaningful purpose to application development. There are three sides to this that matter: Technical progress, Artistic meaning, Environmental\u2026","rel":"","context":"In &quot;Admin&quot;","block_context":{"text":"Admin","link":"https:\/\/www.remotedevelopment.co.uk\/cms\/category\/admin\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":619,"url":"https:\/\/www.remotedevelopment.co.uk\/cms\/introductory-package-idea\/","url_meta":{"origin":664,"position":5},"title":"Introductory package idea","author":"Nicholas","date":"September 26, 2017","format":false,"excerpt":"In a single week \"Sprint\" we can often train a dedicated client to maintain their own blog with social networking, membership and informational pages. \u00a0Our Introductory offer is to use our site configuration skills to provide a framework to work with from Day One. \u00a0We include up to 5 day\u2026","rel":"","context":"In &quot;Admin&quot;","block_context":{"text":"Admin","link":"https:\/\/www.remotedevelopment.co.uk\/cms\/category\/admin\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/www.remotedevelopment.co.uk\/cms\/wp-json\/wp\/v2\/posts\/664"}],"collection":[{"href":"https:\/\/www.remotedevelopment.co.uk\/cms\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.remotedevelopment.co.uk\/cms\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.remotedevelopment.co.uk\/cms\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.remotedevelopment.co.uk\/cms\/wp-json\/wp\/v2\/comments?post=664"}],"version-history":[{"count":3,"href":"https:\/\/www.remotedevelopment.co.uk\/cms\/wp-json\/wp\/v2\/posts\/664\/revisions"}],"predecessor-version":[{"id":668,"href":"https:\/\/www.remotedevelopment.co.uk\/cms\/wp-json\/wp\/v2\/posts\/664\/revisions\/668"}],"wp:attachment":[{"href":"https:\/\/www.remotedevelopment.co.uk\/cms\/wp-json\/wp\/v2\/media?parent=664"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.remotedevelopment.co.uk\/cms\/wp-json\/wp\/v2\/categories?post=664"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.remotedevelopment.co.uk\/cms\/wp-json\/wp\/v2\/tags?post=664"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}