Going to Santiago was not really in our plans, we just came from Mendoza and was a thing decided from one day to another, so we had no idea of what to see or to do and decided to take a tour. This is the best thing we could do as we did it on our first day and gave us an amazing historical perspective of the city and the life of the Chileans. My recommendation is to do this on your first day, and don’t forget to bring a good pair of sneakers, as you will be walking around a lot 
Christian M
Boston, Massachusetts.
//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