{"id":826,"date":"2021-07-04T16:33:38","date_gmt":"2021-07-04T16:33:38","guid":{"rendered":"https:\/\/www.mouratogloucountryclub.com\/\/?page_id=826"},"modified":"2025-08-22T11:16:29","modified_gmt":"2025-08-22T11:16:29","slug":"activites","status":"publish","type":"page","link":"https:\/\/www.mouratogloucountryclub.com\/en\/activites\/","title":{"rendered":"Activit\u00e9s"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;middle&#8221; el_class=&#8221;services-header paddingSection&#8221;][vc_column width=&#8221;4\/12&#8243; el_class=&#8221;textCol&#8221;][vc_column_text]<\/p>\n<h1>Le Mouratoglou Country Club<\/h1>\n<p>[\/vc_column_text][vc_column_text]D\u00e9couvrez le Country Club, le club de sport &amp; fitness bas\u00e9 \u00e0 Biot. Ce club de sport s\u2019adresse \u00e0 tous, pour le plaisir et la remise en forme comme pour des sportifs qui recherchent efforts, endurance et progression sportive. Tous les univers du sport sont repr\u00e9sent\u00e9s et vous permettent de vous offrir une offre compl\u00e8te dans un cadre exceptionnel. D\u00e9couvrez les activit\u00e9s de notre club de sport avec plus de 50 cours collectifs par semaine.[\/vc_column_text][\/vc_column][vc_column width=&#8221;8\/12&#8243; css=&#8221;.vc_custom_1626342580354{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;imgCol&#8221;][vc_single_image image=&#8221;3139&#8243; img_size=&#8221;full&#8221; alignment=&#8221;center&#8221;][\/vc_column][\/vc_row][vc_row][vc_column]<div id=\"custom_categoriesgrid\" class=\"vuetify-component\">\n    <v-app>\n        <v-main >\n            <div class=\"width100 d-flex justify-center\">\n                <v-progress-circular\n                        v-if=\"!loaded\"\n                        :size=\"50\"\n                        color=\"primary\"\n                        indeterminate\n                ><\/v-progress-circular>\n            <\/div>\n            <div v-if=\"loaded\" class=\"categories\">\n                <v-chip outlined>Plus de filtres<\/v-chip>\n                <v-divider vertical color=\"grey\"><\/v-divider>\n                <span v-for=\"cat in categories\" :key=\"cat.id\">\n                    <v-chip  @click=\"toggleCategory(cat.slug)\" :outlined=\"!chosenCategories.includes(cat.slug)\" >{{cat.name}}<\/v-chip>\n                    <v-divider class=\"transparent\" vertical color=\"transparent\"><\/v-divider>\n                <\/span>\n            <\/div>\n            <div class=\"experiences\">\n                <experienceline v-for=\"experience in experiences\" :key=\"String(experience.id)+String(filteredActivities.length)\" :experience=\"experience\" :activities=\"filteredActivities\"><\/experienceline>\n            <\/div>\n        <\/v-main>\n    <\/v-app> \n<\/div>\n\n\r\n<script type=\"text\/x-template\" id=\"experienceline\">\r\n    <div v-if=\"filteredActivities.length\">\r\n        <h2 v-html=\"experience.name\"><\/h2>\r\n        <div class=\"width100 d-flex justify-center\">\r\n            <v-progress-circular\r\n                    v-if=\"loading\"\r\n                    :size=\"50\"\r\n                    color=\"primary\"\r\n                    indeterminate\r\n            ><\/v-progress-circular>\r\n        <\/div>\r\n        <div :class=\"[{'loading':loading},'carousel-wrapper']\" ref=\"carousel\" >\r\n            <i class=\"prev\" v-if=\"filteredActivities.length>3\" @click=\"prev()\" ><\/i>\r\n            <i class=\"next\" v-if=\"filteredActivities.length>3\" @click=\"next()\" ><\/i>\r\n            <div class=\"scene\" ref=\"scene\" v-html='html'>\r\n\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n<\/script>\r\n\r\n\r\n<script>\r\nVue.component('experienceline',{\r\ntemplate: \"#experienceline\",\r\ndata(){\r\n    return {\r\n        html:\"\",\r\n        loading: true,\r\n        carousel:null,\r\n        navCounter: 0\r\n    }\r\n},\r\nprops:['experience','activities'],\r\nasync mounted(){\r\n    try{\r\n        const res = await this.udpateContent();\r\n        this.html = await res.data.data;\r\n\r\n    }catch(e){\r\n        console.log('err',e);\r\n    }finally{\r\n        setTimeout(() => {\r\n            const el = jQuery(this.$refs.carousel).children('.slick-standard-carousel');\r\n            setTimeout(() => {\r\n                this.loading = false;\r\n            }, 100);\r\n        }, 10);\r\n    };\r\n},\r\nmethods:{\r\n    async udpateContent(){\r\n        try{\r\n            this.loading = true;\r\n            const fd = {\r\n                activities : this.filteredActivities\r\n            }\r\n            return  await axios.post(base_url+'\/wp-json\/customcarousel\/layout',fd);\r\n        }catch(e){\r\n            throw e;\r\n        }\r\n    },\r\n    next(){\r\n        const child = jQuery(this.$refs.scene).find('.standardSlide');\r\n        const w = child.width();\r\n        let target  = jQuery(this.$refs.scene).scrollLeft() + w + 5;\r\n\r\n        if(this.navCounter === this.filteredActivities.length - 3){\r\n            this.navCounter = 0;\r\n            jQuery(this.$refs.scene)[0].scroll({\r\n                    left: 0,\r\n                    top: 0,\r\n                    behavior: 'smooth'\r\n            });\r\n        }else{\r\n            this.navCounter ++;\r\n            jQuery(this.$refs.scene)[0].scroll({\r\n                    left: target,\r\n                    top: 0,\r\n                    behavior: 'smooth'\r\n            });\r\n        }\r\n    },\r\n    prev(){\r\n        const child = jQuery(this.$refs.scene).find('.standardSlide');\r\n        w = child.width();\r\n        let target  = jQuery(this.$refs.scene).scrollLeft() - w - 5; \r\n        if(this.navCounter === 0){\r\n            this.navCounter = this.filteredActivities.length - 3;\r\n            target = jQuery(this.$refs.scene).width();\r\n            jQuery(this.$refs.scene)[0].scroll({\r\n                    left: target,\r\n                    top: 0,\r\n                    behavior: 'smooth'\r\n            });\r\n        }else{\r\n            this.navCounter --;\r\n            jQuery(this.$refs.scene)[0].scroll({\r\n                    left: target,\r\n                    top: 0,\r\n                    behavior: 'smooth'\r\n            });\r\n        }\r\n    }\r\n},\r\ncomputed: {\r\n    filteredActivities(){\r\n        return this.activities.filter(e=>{\r\n            return e.experience.includes(this.experience.id);\r\n        });\r\n    }\r\n}\r\n});\r\n<\/script>\n<script>\n   if(typeof base_url === \"undefined\"){\n        var base_url = \"https:\/\/www.mouratogloucountryclub.com\";\n    }\n    const maxActivity = \"5\";\n<\/script>[\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221; content_placement=&#8221;middle&#8221; el_class=&#8221;services-header paddingSection&#8221;][vc_column width=&#8221;4\/12&#8243; el_class=&#8221;textCol&#8221;][vc_column_text] Le Mouratoglou Country Club [\/vc_column_text][vc_column_text]D\u00e9couvrez le Country Club, le club de sport &amp; [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":5,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-826","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Activit\u00e9s - Mouratoglou Country Club - Biot - Sophia Antipolis<\/title>\n<meta name=\"description\" content=\"D\u00e9couvrez l&#039;univers Fitness du Mouratoglou Country Club : plus de 50 cours collectifs hebdomadaires en effectif r\u00e9duit pour tous les niveaux.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.mouratogloucountryclub.com\/activites\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Activit\u00e9s - Mouratoglou Country Club - Biot - Sophia Antipolis\" \/>\n<meta property=\"og:description\" content=\"D\u00e9couvrez l&#039;univers Fitness du Mouratoglou Country Club : plus de 50 cours collectifs hebdomadaires en effectif r\u00e9duit pour tous les niveaux.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mouratogloucountryclub.com\/activites\/\" \/>\n<meta property=\"og:site_name\" content=\"Country Club\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-22T11:16:29+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/activites\\\/\",\"url\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/activites\\\/\",\"name\":\"Activit\u00e9s - Mouratoglou Country Club - Biot - Sophia Antipolis\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/#website\"},\"datePublished\":\"2021-07-04T16:33:38+00:00\",\"dateModified\":\"2025-08-22T11:16:29+00:00\",\"description\":\"D\u00e9couvrez l'univers Fitness du Mouratoglou Country Club : plus de 50 cours collectifs hebdomadaires en effectif r\u00e9duit pour tous les niveaux.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/activites\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/activites\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/activites\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Activit\u00e9s\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/#website\",\"url\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/\",\"name\":\"Country Club\",\"description\":\"Country Club\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/#organization\",\"name\":\"Mouratoglou Country Club\",\"url\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/decouvrir_degrade.png\",\"contentUrl\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/decouvrir_degrade.png\",\"width\":90,\"height\":90,\"caption\":\"Mouratoglou Country Club\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mouratogloucountryclub.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Activit\u00e9s - Mouratoglou Country Club - Biot - Sophia Antipolis","description":"D\u00e9couvrez l'univers Fitness du Mouratoglou Country Club : plus de 50 cours collectifs hebdomadaires en effectif r\u00e9duit pour tous les niveaux.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.mouratogloucountryclub.com\/activites\/","og_locale":"en_US","og_type":"article","og_title":"Activit\u00e9s - Mouratoglou Country Club - Biot - Sophia Antipolis","og_description":"D\u00e9couvrez l'univers Fitness du Mouratoglou Country Club : plus de 50 cours collectifs hebdomadaires en effectif r\u00e9duit pour tous les niveaux.","og_url":"https:\/\/www.mouratogloucountryclub.com\/activites\/","og_site_name":"Country Club","article_modified_time":"2025-08-22T11:16:29+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.mouratogloucountryclub.com\/activites\/","url":"https:\/\/www.mouratogloucountryclub.com\/activites\/","name":"Activit\u00e9s - Mouratoglou Country Club - Biot - Sophia Antipolis","isPartOf":{"@id":"https:\/\/www.mouratogloucountryclub.com\/#website"},"datePublished":"2021-07-04T16:33:38+00:00","dateModified":"2025-08-22T11:16:29+00:00","description":"D\u00e9couvrez l'univers Fitness du Mouratoglou Country Club : plus de 50 cours collectifs hebdomadaires en effectif r\u00e9duit pour tous les niveaux.","breadcrumb":{"@id":"https:\/\/www.mouratogloucountryclub.com\/activites\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mouratogloucountryclub.com\/activites\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.mouratogloucountryclub.com\/activites\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mouratogloucountryclub.com\/"},{"@type":"ListItem","position":2,"name":"Activit\u00e9s"}]},{"@type":"WebSite","@id":"https:\/\/www.mouratogloucountryclub.com\/#website","url":"https:\/\/www.mouratogloucountryclub.com\/","name":"Country Club","description":"Country Club","publisher":{"@id":"https:\/\/www.mouratogloucountryclub.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mouratogloucountryclub.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.mouratogloucountryclub.com\/#organization","name":"Mouratoglou Country Club","url":"https:\/\/www.mouratogloucountryclub.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mouratogloucountryclub.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.mouratogloucountryclub.com\/wp-content\/uploads\/2021\/08\/decouvrir_degrade.png","contentUrl":"https:\/\/www.mouratogloucountryclub.com\/wp-content\/uploads\/2021\/08\/decouvrir_degrade.png","width":90,"height":90,"caption":"Mouratoglou Country Club"},"image":{"@id":"https:\/\/www.mouratogloucountryclub.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.mouratogloucountryclub.com\/en\/wp-json\/wp\/v2\/pages\/826","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mouratogloucountryclub.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.mouratogloucountryclub.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.mouratogloucountryclub.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mouratogloucountryclub.com\/en\/wp-json\/wp\/v2\/comments?post=826"}],"version-history":[{"count":65,"href":"https:\/\/www.mouratogloucountryclub.com\/en\/wp-json\/wp\/v2\/pages\/826\/revisions"}],"predecessor-version":[{"id":3439,"href":"https:\/\/www.mouratogloucountryclub.com\/en\/wp-json\/wp\/v2\/pages\/826\/revisions\/3439"}],"wp:attachment":[{"href":"https:\/\/www.mouratogloucountryclub.com\/en\/wp-json\/wp\/v2\/media?parent=826"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}