diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/config.default.php | 2 | ||||
| -rw-r--r-- | data/templates/base.htm | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/data/config.default.php b/data/config.default.php index 1374b1b..a589924 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -4,7 +4,7 @@ $GLOBALS['phorkie']['cfg'] = array( 'gitdir' => __DIR__ . '/../repos/git/', 'workdir' => __DIR__ . '/../repos/work/', 'tpl' => __DIR__ . '/templates/', - 'css' => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css', + 'css' => '', 'title' => 'phorkie', 'topbar' => '', 'setupcheck' => true, diff --git a/data/templates/base.htm b/data/templates/base.htm index 7cf5505..d13f9e9 100644 --- a/data/templates/base.htm +++ b/data/templates/base.htm @@ -3,10 +3,15 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <link rel="stylesheet" href="/css/bootstrap.min.css"/> + <link rel="stylesheet" href="/css/font-awesome.css"> + <link rel="stylesheet" href="/css/phorkie.css"/> + {% if css %} <link rel="stylesheet" href="{{css}}"/> - <link rel="stylesheet" href="/css/phorkie.css" /> + {% endif %} <title>{% block title %}{% endblock %} - {{title}}</title> <script src="/js/jquery.js"></script> + <script src="/js/bootstrap.min.js"></script> <script src="/js/phorkie.js"></script> {% block meta %}{% endblock %} </head> |
