Conoce nuestros modelos
CARGA
- 4 modelos: CITAN, VITO, SPRINTER, NEW SPRINTER
- 3 tipos de vehículos: FURGÓN, CABINA ESTANDAR, CABINA DOBLE
- Carga útil máxima desde 750 kg a 3000 kg
- Disponible con tracción delantera, trasera y 4x4
Precios desde $15.490.000+IVA
Impuestos, transporte y matriculación no incluidos.PASAJEROS
- 4 modelos: VITO, V-CLASS, SPRINTER, NEW SPRINTER
- 4 tipos de vehículos: MINIBUS, STATION-WAGON, ESCOLAR, LUJO, BUS
- Capacidad de pasajeros: desde 7 a 21 adultos | desde 24 a 32 niños
- Disponibles con tracción trasera y 4x4
Precios desde $36.990.000+IVA
Impuestos, transporte y matriculación no incluidos.Post Venta
Entregamos el más completo servicio de Post Venta a la medida de nuestros clientes. Te invitamos a conocer toda la gama de repuestos y servicios disponible para nuestras divisiones de vehículos.
Sucursales a nivel nacional
Lo mejor o nada. Este ha sido nuestro compromiso en nuestros más de 60 años de historia y en nuestra amplia red de sucursales a lo largo de todo Chile.
Estar siempre cerca de nuestros clientes y brindarles la máxima calidad en servicio es nuestra misión. Contamos con la más grande cobertura, de Arica a Punta Arenas, a través de nuestras más de 30 sucursales.
Te invitamos a conocer nuestras sucursales
Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing: ==> xPathSelector.selectSingleNode(rootElement) [in template "68881#68920#171472" at line 68, column 20] ---- Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign imgNews = xPathSelector.selec... [in template "68881#68920#171472" at line 68, column 1] ----
1<style>
2 .btn-main {
3 background-color: var(--cyan);
4 color: var(--white) !important;
5}
6@media only screen and (min-width:1024px) {
7 .news_content {
8 margin-bottom: 1em;
9 }
10 .news_content h3 {
11 min-height: 240px !important;
12 }
13 .news_text {
14 margin-top: 0;
15 height: 310px;
16 }
17}
18 @media only screen and (max-width:768px) {
19 .news_text {
20 margin-top: 1em;
21 height: 230px;
22 }
23 .news_btn {
24 margin-left: auto;
25 margin-right: auto;
26 }
27 .container {
28 max-width: 100% !important;
29 }
30}
31 .news_img img{
32 width:100% !important;
33 max-width: 250px !important;
34 height: auto !important;
35 max-height: 170px !important;
36 }
37 .news_img{
38 height: 175px !important;
39 }
40
41</style>
42<div class="container">
43<div class="row">
44<div class="col-12">
45<h1>Noticias</h1>
46<hr>
47</div>
48<div class="news_container col-12">
49
50
51<#if entries?has_content>
52<#list entries as curEntry>
53
54<#assign renderer = curEntry.getAssetRenderer()>
55<#assign docXml = saxReaderUtil.read(renderer.getArticle().getContent()) />
56<#assign resumen = docXml.valueOf("//dynamic-element[@name='resumenNoticia']/dynamic-content/text()") />
57
58<#assign viewURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, entry) />
59<#if assetLinkBehavior != "showFullContent">
60 <#assign viewURL = renderer.getURLViewInContext(renderRequest, renderResponse, viewURL) />
61</#if>
62
63
64<#assign journalArticle = renderer.getArticle()>
65<#assign document = saxReaderUtil.read(journalArticle.getContent()) >
66<#assign rootElement = document.getRootElement()>
67<#assign xPathSelector = saxReaderUtil.createXPath("dynamic-element[@name='Imagen4xc3']")>
68<#assign imgNews = xPathSelector.selectSingleNode(rootElement).getStringValue()>
69<#assign imgJson = jsonFactoryUtil.createJSONObject(imgNews)>
70<#assign imagen = "/documents/"+ imgJson.groupId +"/" +imgJson.fileEntryId +"/"+ imgJson.name +"/"+imgJson.uuid >
71
72<div class="col-xs-12 col-sm-6 col-md-6 col-lg-3 news_content">
73 <div class="news_img">
74 <img src="${imagen}" alt="">
75 </div>
76<div>
77<h3 onclick="location.href='${viewURL?replace('/-/', '/', 'r')}';" style="cursor:pointer;">
78 ${curEntry.getTitle(locale)}
79</h3>
80<p class="news_text">
81 ${resumen}
82</p>
83<div class="row" >
84 <div class="col-md-8 col-md-offset-2">
85 <a class="btn btn-main"
86 onclick="location.href='${viewURL}';" style="cursor:pointer;" title="${curEntry.getTitle(locale)}">
87 Ver más</a>
88 </div>
89</div>
90</div>
91<hr>
92</div>
93
94</#list>
95</#if>
96
97
98<div class="news_btn">
99 <button class="btn btn-main" onclick="location.href='/noticias'">
100 <span>Ver todas las noticias</span>
101 </button>
102 </div>
103</div>
104</div>
105</div>
106</div>