Become a Member Page Template
Become an AQHA Member
Be a part of the world's largest equine breed registry Association, and enjoy the many benefits of being an AQHA member.
We know the relationship between horse and rider is unique – there are moments of joy, sacrifice and accomplishment. Whether you are ready to start showing, someone who just loves American Quarter Horses, or anywhere in between, AQHA is here to help you make the most of those moments.
Read a Sample Issue of The American Quarter Horse Journal
Sign up to access the digital version of the March-April 2026 issue of The American Quarter Horse Journal.
An error occurred while processing the template.
The following has evaluated to null or missing:
==> displayTitle [in template "20116#20152#PROMOTED-LINKS-10-COL" at line 7, column 47]
----
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: ${displayTitle.getData()!""} [in template "20116#20152#PROMOTED-LINKS-10-COL" at line 7, column 45]
----
1<#import "aqha-theme_SERVLET_CONTEXT_/templates/base22/freemarker-utils.ftl" as utils>
2
3<div id="tilesWidget" class="b-tiles b-promoted--background b-all-width-background__light-gray">
4 <a class="b-widget-link" href="#"><i class="fa fa-angle-down" aria-hidden="true"></i></a>
5 <div class="row">
6 <div class="col-xs-12 col-md-offset-3 col-md-6">
7 <h2 class="b-tiles__title b-h2">${displayTitle.getData()!''}</h2>
8 <div class="b-tiles__subtitle">${subtitle.getData()!''}</div>
9 </div>
10 </div>
11 <div class="row">
12 <#if link.getSiblings()?has_content>
13 <#assign defaultImageURL = themeDisplay.getPathThemeImages() + "/generic-icon.png" />
14 <#list link.getSiblings() as cur_item>
15 <#assign linkTitle = (cur_item.getChild("linkTitle")?? && cur_item.getChild("linkTitle").getData() != "")?then(cur_item.getChild("linkTitle").getData(), "") />
16 <#assign entryImage = (cur_item.getChild("image")?? && cur_item.getChild("image").getData() != "")?then(cur_item.getChild("image").getData(), "defaultImageURL") />
17 <#assign linkDescription = (cur_item.getChild("linkDescription")?? && cur_item.getChild("linkDescription").getData() != "")?then(cur_item.getChild("linkDescription").getData(), "") />
18 <#assign entryInternalLink = (cur_item.getChild("internalLink")?? && cur_item.getChild("internalLink").getFriendlyUrl() != "")?then(cur_item.getChild("internalLink").getFriendlyUrl(), "") />
19 <#assign entryExternalLink = (cur_item.getChild("externalLink")?? && cur_item.getChild("externalLink").getData() != "")?then(cur_item.getChild("externalLink").getData(), "") />
20 <#assign linkURL = (entryInternalLink != "")?then(entryInternalLink, entryExternalLink) />
21 <#if (cur_item?index < 5)>
22 <@buildQuickLinksDisciplinesWidget cur_item?index />
23 <#else>
24 <#break>
25 </#if>
26 </#list>
27 </#if>
28 </div>
29</div>
30<#macro buildQuickLinksDisciplinesWidget idx>
31 <div class="col-xs-12 <#if idx == 0>col-md-offset-1</#if> col-md-2 b-tile-wrap">
32 <div class="b-tile">
33 <#-- Temporal fix to remove versioning issues when use export/import lar files -->
34 <#-- TODO: Remove this temporal fix once the problem has been resolved -->
35 <div class="b-tile__icon lazy-load" datasrc="${utils.cleanPath(entryImage)}"></div>
36 <div class="b-links-container">
37 <a href="${linkURL}" class="b-tile__title">${linkTitle}</a>
38 <a href="${linkURL}" class="b-tile__link">
39 <span>${linkDescription}</span>
40 <i class="fa fa-arrow-circle-right" aria-hidden="true"></i>
41 </a>
42 </div>
43 </div>
44 </div>
45</#macro>
46
47<script>
48 AUI().ready(function () {
49 $("a.b-widget-link").on('click', function(event) {
50 event.preventDefault();
51 $('html, body').animate({
52 scrollTop: $(event.target).closest('#tilesWidget').offset().top
53 }, 'slow');
54 });
55 });
56</script>
Asset Publisher