Ed Burke Million Futurity
Ed Burke Million Futurity
The Ed Burke Million Futurity runs each summer at the historic Los Alamitos Race Course in Cypress, California.
The Ed Burke Million Futurity (G1) runs each summer at the historic Los Alamitos Race Course in Cypress, California.
The first running took place in 1951, at which time the race was called the PCQHRA Futurity. It was deemed the Pomona Futurity in 1968 and 1971-1978.
This race is the first leg of the Los Alamitos Bonanza. The Los Alamitos Bonanza is a $1 million cash bonus – not an annuity - therefore the connections of any horse that completes a sweep of the Ed Burke Million, Golden State Million and Los Alamitos Two Million futurities will receive the cash money virtually on the spot.
The Pacific Coast Quarter Horse Racing Association administers the Ed Burke Million Futurity.
- Watch the Ed Burke Million Futurity on:
- Q-Racing Video (both live and replay footage available)
- Los Alamitos
- Visit the Los Alamitos website for additional information.
Fehler bei der Verarbeitung der Vorlage.
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>