mirror of
https://github.com/discourse/discourse.git
synced 2024-12-19 18:01:40 +08:00
14 lines
376 B
Handlebars
14 lines
376 B
Handlebars
{{#if routeParam}}
|
|
{{#link-to route routeParam}}{{i18n label}}{{/link-to}}
|
|
{{else}}
|
|
{{#if route}}
|
|
{{#link-to route}}{{i18n label}}{{/link-to}}
|
|
{{else}}
|
|
{{#if path}}
|
|
<a href="{{unbound fullPath}}" data-auto-route="true">{{i18n label}}</a>
|
|
{{else}}
|
|
<a href="{{unbound href}}" data-auto-route="true">{{i18n label}}</a>
|
|
{{/if}}
|
|
{{/if}}
|
|
{{/if}}
|