-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0479508
commit 4249d58
Showing
2 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
include_component('publish/wikibreadcrumbs', array('article_name' => $article_name)); | ||
\thebuggenie\core\framework\Context::loadLibrary('publish/publish'); | ||
$tbg_response->setTitle($article_name); | ||
|
||
?> | ||
|
||
<div class="main-wrapper"> | ||
<aside class="sidebar"> | ||
<?php include_component('leftmenu', compact('article', 'special')); ?> | ||
</aside> | ||
|
||
<section class="main article"> | ||
<a name="top"></a> | ||
<?php if ($component): ?> | ||
<?php include_component("publish/special{$component}", compact('projectnamespace')); ?> | ||
<?php else: ?> | ||
<div class="redbox" style="margin: 15px;"> | ||
<?php echo __('This special page does not exist'); ?> | ||
</div> | ||
<?php endif; ?> | ||
</section> |