diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-08-10 18:28:12 +0200 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-08-10 18:28:12 +0200 |
commit | bed7184fbbe63aec30add514b7f9f451dc93d91a (patch) | |
tree | 8dd050fb2c36b11406066e3dc44dcedf36325140 /index.php | |
parent | 6588db8fd6d6b9aa7edcd8b97db9acdd98a3342c (diff) |
Add ability to use another Bootstrap theme.
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -225,6 +225,9 @@ final class LookingGlass { if ($this->frontpage['bootstrap_theme']) { print '<link href="libs/bootstrap-3.2.0/css/bootstrap-theme.min.css" rel="stylesheet" />'; } + if ($this->frontpage['custom_boostrap_theme']) { + print '<link href="'.$this->frontpage['custom_bootstrap_theme'].'" rel="stylesheet" />'; + } print '<link href="'.$this->frontpage['css'].'" rel="stylesheet" />'; print '</head>'; print '<body>'; |