2017 Looking back at the season

Home View072

2017 is already 2 weeks behind us and the new season is imminent. Much has changed in La Camillette over the past year. For example, in April we painted the entire outer wall with a mixture of lime, water and pigment in the typical  color of the ‘Le Perche’ region. In 2016 we started with the rear wall but now everything is really finished.

To do this job a special hoist had to be rented. This was a fun but also some exciting job because once the crane was at the right height, it blocked and did not want to go down again. Luckily, Camille and Juliette were closeby to place the biggest ladder they could find and finally everything went well.

Furthermore, Isabelle has painted ‘la cabane’, or the garden house, inside again and the roof has also been renewed after it was blown away by a spring storm.


The new lawn mower

A new lawnmower made its appearance back in June. It is an American model called “Snapper”, very suitable for our sometimes somewhat hilly garden. Camille and Juliette are now suddenly very motivated to lend a hand with mowing the lawn.


The tree house

There is now also a tree house installed. We have pruned the large willow tree in front of the house so that a cosy seat has been created on the inside of the tree. A small ladder was quickly found and with that, the tree house can now be visited by everyone.


The new season, 2018

Before we can welcome our first guests this year, we have plans to further improve the interior. In April, during the Easter holidays, the large dark beams inside the house will get a new light gray colour through a treatment consisting of milk and titanium powder. On the outside, we will continue with improvements of the yard at the front of the house.

We still have capacity, but you are advised to book rapidly, as usually the summer months tend to be fully booked by April.

Greetings and see you in La Camillette,

Jacques, Isabelle, Camille & Juliette

Here are some more pictures from last year.


More articles

Bonne Annee Lacam 2024

2023 Sustainability

Reading time: 2:52 min

We look back on 2023 with satisfaction as a year of many major and minor improvements in and around the house. The past year has…

Read article
IMG 3833

2022 A warm season

Reading time: 0:58 min

The year 2022 is already over, and with a glance in the rearview mirror, we can look back on a busy but also exceptionally warm…

Read article
Lacam 020 A

2021 Installation of the Hot Tub

Reading time: 0:57 min

Last season we built a new terrace in the garden with a view of the surrounding grass meadows. A real wood-fired hot tub has been…

Read article
La Camillette

La Camillette

Cropped Newlogo Mobile Lacam2
Blijf op de hoogte van het laatste nieuws

Schrijf u in voor onze nieuwsbrief

<link href="https://send.mailer.gdn/core/css/embedded.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined" rel="stylesheet">
<style>
    .subscribe-embedded-form {
        color: #333;
        padding: 10px;
        max-width: 400px;
        margin: auto;
        background: transparent;
    }

    .subscribe-embedded-form label {
        color: #555;
        display: block;
        position: absolute;
        pointer-events: none;
        transition: 0.2s;
    }

    .form-group {
        position: relative;
        margin-bottom: 20px; /* Ensure this margin creates space between fields */
    }

    .form-control {
        width: 100%;
        padding: 10px; /* Ensure input fields have matching padding */
        box-sizing: border-box;
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 10px;
        font-size: 14px;
    }

    .form-control::placeholder {
        color: #3A2D30;
        font-size: 14px;
    }

    .form-button {
        text-align: center;
        margin-top: 20px;
    }

    .form-button .btn {
        background-color: #05A63B;
        font-size: 20px;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .form-button .btn:hover {
        background-color: #3A2D30;
    }

    .form-control:focus + label,
    .form-control:not(:placeholder-shown) + label {
        top: -15px;
        left: 10px;
        font-size: 12px;
        color: #333;
    }

    .form-group .error-message {
        color: white;
        display: none; 
        font-weight: bold; /* Make the text bold */
        background-color: #FA4462; /* Set the background color */
        padding: 10px; /* Ensure padding is applied for appearance */
        border-radius: 5px; /* Add rounded corners */
        margin-top: 18px; /* Space above the error message */
    }
</style>

<div class="subscribe-embedded-form">
    <form id="contact-form" action="https://send.mailer.gdn/lists/67167f4f070b7/embedded-form-subscribe-captcha" method="POST" novalidate>
        <div class="form-group control-text">
            <input id="EMAIL" placeholder="E-mail * " value="" type="text" name="EMAIL" class="form-control required email:rfc,filter" required>
            <label><span class="text-danger"></span></label>
            <span class="error-message" id="email-error">Invalid email address.</span>
        </div>
        <div class="form-group control-text">
            <input id="FIRST_NAME" placeholder="Voornaam * " value="" type="text" name="FIRST_NAME" class="form-control" required>
            <label></label>
            <span class="error-message" id="first-name-error">Invalid first name.</span>
        </div>
        <div class="form-group control-text">
            <input id="LAST_NAME" placeholder="Achternaam * " value="" type="text" name="LAST_NAME" class="form-control" required>
            <label></label>
            <span class="error-message" id="last-name-error">Invalid last name.</span>
        </div>
        <div class="form-button">
            <button type="submit" class="btn btn-primary">VERSTUUR</button>
        </div>
    </form>
</div>

<script src="https://send.mailer.gdn/core/js/jquery-3.6.4.min.js"></script>
<script>
jQuery(document).ready(function($) {
    $("#contact-form").on("submit", function(event) {
        event.preventDefault(); // Prevent default form submission

        var email = $("#EMAIL").val();
        
        // Validate email using Reoon API in QUICK mode
        $.ajax({
            url: "https://emailverifier.reoon.com/api/v1/verify",
            type: "GET",
            dataType: "json",
            data: {
                email: email,
                key: "VPmqJzH0kiuY0uwglZODELRVa29QapRS", // Your Reoon API key
                mode: "quick"
            },
            success: function(response) {
                // Check the response status
                if (response && response.status === "valid") {
                    // If valid, submit the form data to Acelle Mail
                    $("#contact-form").off("submit").submit(); // Remove handler and submit
                } else {
                    $("#email-error").show(); // Show error message if email is invalid
                }
            },
            error: function(jqXHR, textStatus, errorThrown) {
                console.error("Error during email verification:", textStatus, errorThrown);
                $("#email-error").show(); // Show error on AJAX request failure
            }
        });
    });
});
</script>