Skip to Main Content

Stock Number: U257808

2023 Kenworth W900

  • $219,900.00
  • 95568 mi
Pre-Owned

Stock Number: U002038

2023 Mack Granite

  • $196,900.00
  • 124447 mi
Pre-Owned

Stock Number: U731705

2021 Peterbilt 579

  • $60,900.00
  • 368658 mi
Pre-Owned

Stock Number: U731692

2021 Peterbilt 579

  • $60,800.00
  • 376576 mi
Pre-Owned

Stock Number: U731714

2021 Peterbilt 579

  • $60,800.00
  • 361159 mi
Pre-Owned

Stock Number: U731707

2021 Peterbilt 579

  • $60,800.00
  • 374800 mi
Pre-Owned

Stock Number: U731688

2021 Peterbilt 579

  • $57,900.00
  • 402,690 mi
Pre-Owned

Stock Number: U731683

2021 Peterbilt 579

  • $60,800.00
  • 376,590 mi
Pre-Owned

Stock Number: U691135

2020 Peterbilt 579

  • $49,500.00
  • 427883 mi
Pre-Owned

Stock Number: U691114

2020 Peterbilt 579

  • $45,900.00
  • 501260 mi
Pre-Owned

Stock Number: U669529

2024 Peterbilt 389

  • $265,900.00
  • 82477 mi
Pre-Owned

Stock Number: U610339

2019 Peterbilt 567

  • $65,900.00
  • 294245 mi
Pre-Owned

Stock Number: U691136

2020 Peterbilt 579

  • $45,900.00
  • 472872 mi
Pre-Owned

Stock Number: U691124

2020 Peterbilt 579

  • $49,977.00
  • 517863 mi
Pre-Owned

Stock Number: U731675

2021 Peterbilt 579

  • $57,900.00
  • 420154 mi
Pre-Owned

Stock Number: UMS6509

2021 Freightliner Cascadia

  • $39,500.00
  • 412760 mi
Pre-Owned

Stock Number: UMS6520

2021 Freightliner Cascadia

  • $39,500.00
  • 453254 mi
Pre-Owned

Stock Number: UMS6518

2021 Freightliner Cascadia

  • $39,500.00
  • 441225 mi
Pre-Owned

Stock Number: U767971

2022 Peterbilt 579

  • $79,950.00
  • 409372 mi
Pre-Owned

Stock Number: U767958

2022 Peterbilt 579

  • $77,500.00
  • 437129 mi
Pre-Owned

Stock Number: U739061

2021 Peterbilt 579

  • $59,900.00
  • 434273 mi
Pre-Owned

Stock Number: U739060

2021 Peterbilt 579

  • $57,400.00
  • 484490 mi
Pre-Owned

Stock Number: U724313

2020 Peterbilt 579

  • $39,900.00
  • 662,001 mi
Pre-Owned

Stock Number: U724309

2020 Peterbilt 579

  • $39,500.00
  • 608,384 mi
Pre-Owned

Stock Number: U718042

2020 Peterbilt 579

  • $39,500.00
  • 780,494 mi
Pre-Owned
An error occurred while processing the template.
The following has evaluated to null or missing:
==> webContent.totalCount  [in template "37794063322763#20119#220604" at line 13, column 38]

----
Tip: It's the step after the last dot that caused this error, not those before it.
----
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: totalCount = webContent.totalCount  [in template "37794063322763#20119#220604" at line 13, column 25]
----
1<#-- 
2Widget templates can be used to modify the look of a 
3specific application. 
4 
5Please use the right panel to quickly add commonly used variables. 
6Autocomplete is also available and can be invoked by typing "${". 
7--> 
8<#if assetCategory?has_content> 
9		<#assign 
10			link = "/headless-delivery/v1.0/content-structures/1404290/structured-contents?filter=taxonomyCategoryIds/any(t:t eq " + assetCategory.getCategoryId() + ")" 
11		  webContent = restClient.get("/headless-delivery/v1.0/content-structures/1404290/structured-contents?filter=taxonomyCategoryIds/any(t:t eq " + assetCategory.getCategoryId() + ")") 
12      categoryContentJson = jsonFactoryUtil.createJSONObject(webContent) 
13			totalCount = webContent.totalCount 
14		/> 
15	 
16	<#if totalCount = 1> 
17	<#list webContent.items as item> 
18		<#list item.contentFields as contentField> 
19			<#assign categoryDesc = jsonFactoryUtil.createJSONObject(contentField.contentFieldValue) /> 
20			<p> 
21				${categoryDesc.data} 
22			</p> 
23		</#list> 
24	</#list> 
25		<#else> 
26			<#if assetCategory.name?? && assetCategory.name != "" && assetCategory.name == "Used"> 
27			<h1>Used Trucks</h1> 
28			${assetCategory.getDescription(.locale)} 
29			<hr/> 
30			 
31		<#elseif assetCategory.name?? && assetCategory.name != "" && assetCategory.name == "New"> 
32			<h1>New Trucks</h1> 
33			${assetCategory.getDescription(.locale)} 
34			<hr/> 
35			 
36		<#elseif assetCategory.name?? && assetCategory.name != "" && assetCategory.name == "Blacklist"> 
37			<h1>Sales Specials</h1> 
38			${assetCategory.getDescription(.locale)} 
39			<hr/> 
40			 
41		<#else> 
42			<h1 class="sr-only">All Products</h1> 
43			${assetCategory.getDescription(.locale)} 
44		</#if> 
45	</#if> 
46</#if>