A great way to see the city from a locals perspective
by Fabian | Dec 19, 2020 | Testimonial |
I took this walking tour after already living in Santiago for 3 months. Ignacio showed us around some of the back streets that I would never have found on my own and gave us lots of history about the old buildings, looked at cool street art, and learned about influential artists. Great way to learn more about the city and its history in a day.
Rita Le Blanc, Canadá.
Canadá
//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