aboutsummaryrefslogtreecommitdiff
path: root/brep/mod-repository-details.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'brep/mod-repository-details.cxx')
-rw-r--r--brep/mod-repository-details.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/brep/mod-repository-details.cxx b/brep/mod-repository-details.cxx
index 742bee9..0a88a16 100644
--- a/brep/mod-repository-details.cxx
+++ b/brep/mod-repository-details.cxx
@@ -18,6 +18,7 @@
#include <web/xhtml>
#include <web/module>
+#include <web/xhtml-fragment>
#include <web/mime-url-encoding>
#include <brep/page>
@@ -57,6 +58,8 @@ handle (request& rq, response& rs)
// server process.
//
static const dir_path& root (options_->root ());
+ static const fragment& logo (options_->logo ());
+ static const vector<page_menu>& menu (options_->menu ());
// Make sure no parameters passed.
//
@@ -79,7 +82,7 @@ handle (request& rq, response& rs)
<< CSS_LINKS (path ("repository-details.css"), root)
<< ~HEAD
<< BODY
- << DIV_HEADER (root)
+ << DIV_HEADER (root, logo, menu)
<< DIV(ID="content");
transaction t (db_->begin ());