I’m from Germany and I’m currently working as an aupair in Chile. I’ve been here for only two weeks now and this was the first time I actually left Santiago and went to Valparaiso, which is a beautiful city and definitely worth seeing while you’re in Chile. Felipe and nacho showed us around different places and we had lunch at a cute little Café (it wasn’t too touristic which I loved) and it was so fun because they’re both really funny and nice! Their English was very good as well and we learned a lot! I’m probably gonna go on another tour with them while I’m here. They already made my stay in Chile an unforgettable experience. Thanks again!
Elke Glatzel
Germany
//CSS Grid Blog Layout by Divi Soup
(function ($) {
$(document).ready(function () {
//Wrap first grid elements in containers
$(".ds-grid-blog-1 .et_pb_post").each(function () {
$(this).find(".entry-featured-image-url").wrapAll('
');
$(this).find(".entry-title, .post-meta, .post-content").wrapAll('
');
});
});
})(jQuery);
(function ($) {
$(document).ready(function () {
$(document).bind('ready ajaxComplete', function () {
//Wrap second grid elements in containers
$(".ds-grid-blog-2 .et_pb_post").each(function () {
$(this).find(".entry-featured-image-url").wrapAll('
');
$(this).find(".entry-title, .post-meta, .post-content").wrapAll('
');
});
//Move elements around
$(".et_pb_post").each(function () {
$(".post-meta", this).insertBefore($(".entry-title", this));
});
//Add button class to read more link
$(".et_pb_post a.more-link").addClass("et_pb_button");
//Replace pipes and remove commas from the meta
$(".et_pb_post").html(function () {
return $(this).html().replace(/\|/g, '/').replace(/,/g, '');
});
});
});
})(jQuery);
//End CSS Grid Blog Layout by Divi Soup