You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
889 B
Smarty
32 lines
889 B
Smarty
<h1>Themes</h1>
|
|
<hr />
|
|
|
|
<h3>Custom Themes</h3>
|
|
<p>
|
|
The following themes are currently installed in this NodeBB instance.
|
|
</p>
|
|
<ul class="themes" id="installed_themes">
|
|
<li><i class="fa fa-refresh fa-spin"></i> Checking for installed themes...</li>
|
|
</ul>
|
|
|
|
<h3>Bootswatch Themes</h3>
|
|
<p>
|
|
NodeBB Themes are powered by Bootswatch, a repository containing themes built
|
|
with Bootstrap as a base theme.
|
|
</p>
|
|
<ul class="themes" id="bootstrap_themes">
|
|
<li><i class="fa fa-refresh fa-spin"></i> Loading Themes</li>
|
|
</ul>
|
|
|
|
<h3>Revert to Default</h3>
|
|
<p class="alert">
|
|
<button class="btn btn-warning" id="revert_theme">Revert</button> This will remove any custom theme applied to your NodeBB, and restore the base theme.
|
|
</p>
|
|
|
|
<script>
|
|
var bootswatchListener = function(data) {
|
|
require(['forum/admin/themes'], function(t) {
|
|
t.render(data);
|
|
});
|
|
}
|
|
</script> |