aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Views/Mobile/Project/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/Application/Views/Mobile/Project/index.php')
-rw-r--r--h-source/Application/Views/Mobile/Project/index.php19
1 files changed, 10 insertions, 9 deletions
diff --git a/h-source/Application/Views/Mobile/Project/index.php b/h-source/Application/Views/Mobile/Project/index.php
index 8fe1bd2..3fa494d 100644
--- a/h-source/Application/Views/Mobile/Project/index.php
+++ b/h-source/Application/Views/Mobile/Project/index.php
@@ -20,12 +20,13 @@
// along with h-source. If not, see <http://www.gnu.org/licenses/>.
?>
- <div data-role="content">
-
- <div class="position_tree_box">
- <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Home</a> &raquo; 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");
+ }
+?>