mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
c168639be2
This will be used by discourse-theme-creator to add avatars next to each theme.
26 lines
804 B
Handlebars
26 lines
804 B
Handlebars
{{#unless editingTheme}}
|
|
<div class='content-list'>
|
|
<h3>{{i18n 'admin.customize.theme.long_title'}}</h3>
|
|
<ul>
|
|
{{#each sortedThemes as |theme|}}
|
|
<li>
|
|
{{#link-to 'adminCustomizeThemes.show' theme replace=true}}
|
|
{{plugin-outlet name="admin-customize-themes-list-item" connectorTagName='span' args=(hash theme=theme)}}
|
|
{{theme.name}}
|
|
{{#if theme.user_selectable}}
|
|
{{d-icon "user"}}
|
|
{{/if}}
|
|
{{#if theme.default}}
|
|
{{d-icon "asterisk"}}
|
|
{{/if}}
|
|
{{/link-to}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
|
|
{{d-button label="admin.customize.new" icon="plus" action="newTheme" class="btn-primary"}}
|
|
{{d-button action="importModal" icon="upload" label="admin.customize.import"}}
|
|
</div>
|
|
{{/unless}}
|
|
{{outlet}}
|