diff options
Diffstat (limited to 'h-source/Application/Views/Desktop/Project/index.php')
-rw-r--r-- | h-source/Application/Views/Desktop/Project/index.php | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/h-source/Application/Views/Desktop/Project/index.php b/h-source/Application/Views/Desktop/Project/index.php index 7bbad78..0ca0dad 100644 --- a/h-source/Application/Views/Desktop/Project/index.php +++ b/h-source/Application/Views/Desktop/Project/index.php @@ -20,12 +20,14 @@ // along with h-source. If not, see <http://www.gnu.org/licenses/>. ?> - <div id="left"> - - <div class="position_tree_box"> - <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Home</a> » h-project - </div> - - <p>write in the file <b>Application/Views/Project/index.php</b> your project information</p> - - </div> +<?php + if (file_exists(ROOT."/Template/".Params::$viewSubfolder."/Project/index_$lang.php")) + { + include(ROOT."/Template/".Params::$viewSubfolder."/Project/index_$lang.php"); + } + else + { + include(ROOT."/Template/".Params::$viewSubfolder."/Project/index.php"); + } +?> + |