diff options
| author | Justin J. Novack <jnovack@gmail.com> | 2012-10-06 22:27:42 -0400 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2012-10-24 14:59:25 +0200 |
| commit | 47e61fcb72b04899c46117af35130a7689d17192 (patch) | |
| tree | cc137d3295560950afb019d65b85ef0290443343 /data | |
| parent | e0cf2cf8d2612155bf5752f5978cdff8785a790a (diff) | |
| download | phorkie-47e61fcb72b04899c46117af35130a7689d17192.tar.gz phorkie-47e61fcb72b04899c46117af35130a7689d17192.zip | |
Integrate local copy of Bootstrap and Font-Awesome
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> |
