mirror of
https://github.com/Mintplex-Labs/express-admin.git
synced 2026-08-24 21:31:28 -04:00
9 lines
294 B
HTML
9 lines
294 B
HTML
<script type="text/javascript">
|
|
var xAdmin = {root: '{{root}}'};
|
|
(function () {
|
|
var bootstrap = document.getElementById('bootstrap'),
|
|
theme = localStorage.getItem('theme') || 'default';
|
|
bootstrap.href = xAdmin.root+'/bootswatch/'+theme+'/bootstrap.min.css';
|
|
}());
|
|
</script>
|