diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/config.default.php | 1 | ||||
| -rw-r--r-- | data/templates/base.htm | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/data/config.default.php b/data/config.default.php index e8c3d80..1b8e39b 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -5,6 +5,7 @@ $GLOBALS['phorkie']['cfg'] = array( 'workdir' => __DIR__ . '/../repos/work/', 'tpl' => __DIR__ . '/templates/', 'css' => 'http://twitter.github.com/bootstrap/assets/css/bootstrap.css', + 'title' => 'phorkie', ); $GLOBALS['phorkie']['tools'] = array( '\\phorkie\\Tool_Xmllint' => true, diff --git a/data/templates/base.htm b/data/templates/base.htm index 879635b..6dfb15a 100644 --- a/data/templates/base.htm +++ b/data/templates/base.htm @@ -4,7 +4,7 @@ <head> <link rel="stylesheet" href="{{css}}"/> <link rel="stylesheet" href="/phorkie.css" /> - <title>{% block title %}{% endblock %} - phorkie</title> + <title>{% block title %}{% endblock %} - {{title}}</title> <script src="/jquery-1.7.2.min.js"></script> <script src="/phorkie.js"></script> </head> @@ -13,7 +13,7 @@ <div class="navbar-inner"> <div class="container"> <a class="brand" href="/"> - phorkie + {{title}} </a> <ul class="nav"> <li> |
