tinymce CSS tweak - to make the font size bigger.
[elgg.git] / _weblog / index.php
blobf24ad727f94c168c58abe96fe7c64546b5dd1c99
1 <?php
3 // ELGG weblog view page
5 // Run includes
6 require_once(dirname(dirname(__FILE__))."/includes.php");
8 run("profile:init");
9 run("weblogs:init");
10 run("friends:init");
12 define("context", "weblog");
13 templates_page_setup();
15 $title = run("profile:display:name") . " :: " . __gettext("Blog");
17 $filter = optional_param("filter");
18 if (!empty($filter)) {
20 $title .= " :: " . $filter;
24 templates_page_setup();
26 $body = run("content:weblogs:view");
27 $body .= run("weblogs:view");
29 $body = templates_draw(array(
30 'context' => 'contentholder',
31 'title' => $title,
32 'body' => "<div id=\"view_own_blog\">" . $body . "</div>"
36 echo templates_page_draw( array(
37 $title, $body