All American Derby
All American Derby (G1)
The All American Derby is the third and final leg of the Quarter Horse Derby Triple Crown at Ruidoso Downs.
The All American Derby (G1) is run every Labor Day weekend at Ruidoso Downs in the mountain village of Ruidoso, New Mexico.
Run over 440 yards on the day preceding Labor Day, the All American Derby offers the winner more than just the lion’s share of the large purse, which has reached as high as $2.8 million. It also awards the winner with an invitation to the Grade 1 Champion of Champions at Los Alamitos Race Course in Southern California.
The All American Derby is the third and final leg of the Quarter Horse Derby Triple Crown. If a horse wins the three races (Ruidoso Derby, Rainbow Derby and All American Derby), its connections will receive a $1 million bonus.
- Watch the All American Futurity trials and finals on:
- Q-Racing Video (both live and replay footage available)
- Ride TV
- Ruidoso Downs
- Visit the Ruidoso Downs Racetrack website for additional information.
An error occurred while processing the template.
The following has evaluated to null or missing:
==> entry.getPublishDate() [in template "20116#20152#90303" at line 50, column 51]
----
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: ${entry.getPublishDate()?date?string[... [in template "20116#20152#90303" at line 50, column 49]
----
1<#-- Related Items Template (7.4-ready, Bootstrap 5 layout, no JS dependency) -->
2<#import "aqha-theme_SERVLET_CONTEXT_/templates/base22/freemarker-utils.ftl" as utils>
3
4<#if entries?has_content>
5<#assign JSONFactoryUtil = staticUtil["com.liferay.portal.kernel.json.JSONFactoryUtil"] />
6
7<div class="">
8 <div class="b-web-component__body">
9 <div class="b-related-items-list">
10 <div class="panel panel-default">
11 <div class="list-group list-group-flush">
12 <div class="row">
13 <#list entries as entry>
14 <#assign renderer = entry.getAssetRenderer() />
15 <#assign className = renderer.getClassName() />
16
17 <#if className == "com.liferay.journal.model.JournalArticle">
18 <#assign journalArticle = renderer.getArticle() />
19 <#assign document = saxReaderUtil.read(journalArticle.getContentByLocale(locale)) />
20 <#assign entryViewURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, entry, true) />
21 <#assign entryTitle = entry.getTitle(locale) />
22 <#assign current_category_name = entry.getCategories() />
23
24 <#-- Extract DDM image JSON -->
25 <#assign imageJsonStr = document.valueOf("//dynamic-element[@name='image']/dynamic-content/text()")!"" />
26 <#assign entryThumbnail = "" />
27
28 <#if imageJsonStr?has_content>
29 <#attempt>
30 <#assign imageJson = JSONFactoryUtil.createJSONObject(imageJsonStr) />
31 <#if imageJson.has("uuid") && imageJson.has("groupId")>
32 <#assign uuid = imageJson.getString("uuid")!"" />
33 <#assign groupId = imageJson.getLong("groupId")!0 />
34 <#assign entryThumbnail = "/documents/" + groupId + "/" + uuid />
35 </#if>
36 <#recover>
37 </#attempt>
38 </#if>
39
40 <div class="col-xs-12 col-sm-4 padding-top-md">
41 <div class="b-related-item">
42 <div class="b-web-component b-web-component--border">
43 <a href="${entryViewURL}">
44 <div class="b-related-item__image lazy-load lazy-loaded"
45 datasrc="${entryThumbnail?trim}"
46 style="background-image: url('${entryThumbnail?trim}')">
47 </div>
48 </a>
49 <div class="padding-sides padding-top-sm b-news-and-blogs__card-right-date">
50 ${entry.getPublishDate()?date?string["MMM dd, yyyy"]}
51 <#if current_category_name?? && (current_category_name?size > 0)>
52 | ${current_category_name[0].getName()?trim}
53 <#if current_category_name[1]?? && (current_category_name[1] != "")>
54 , ${current_category_name[1].getName()?trim}
55 </#if>
56 </#if>
57 </div>
58 <div class="padding-sides padding-top-sm padding-bottom-sm b-related-item__title">
59 <a class="b-related-item__link" href="${entryViewURL}">
60 <@utils.cutStringByCharacters entryTitle 200 />
61 </a>
62 </div>
63 </div>
64 </div>
65 </div>
66 </#if>
67 </#list>
68 </div>
69 </div>
70 </div>
71 </div>
72 </div>
73</div>
74</#if>