diff options
author | lpouzenc <lpouzenc@gmail.com> | 2013-11-28 13:11:58 +0100 |
---|---|---|
committer | lpouzenc <lpouzenc@gmail.com> | 2013-11-28 13:11:58 +0100 |
commit | a77d63fd3ce1e93a554b62e6f63646f1fb568ecb (patch) | |
tree | baf11cfbae3efa6c2773667565f01e08902ce90d /templates/default/layout-article.php | |
download | plaintextcms-a77d63fd3ce1e93a554b62e6f63646f1fb568ecb.tar.gz plaintextcms-a77d63fd3ce1e93a554b62e6f63646f1fb568ecb.tar.bz2 plaintextcms-a77d63fd3ce1e93a554b62e6f63646f1fb568ecb.zip |
Diffstat (limited to 'templates/default/layout-article.php')
-rw-r--r-- | templates/default/layout-article.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/default/layout-article.php b/templates/default/layout-article.php new file mode 100644 index 0000000..522bb86 --- /dev/null +++ b/templates/default/layout-article.php @@ -0,0 +1,17 @@ +<div id="main"> +<div id="tree-div"></div> +<h1 id="title"><?=$page_props['title']?></h1> +<div id="bodyContent"> + +<div id="teaser" class="shorttext"> +<?php include("div-teaser.html"); ?> +</div> + +<div id="content" class="article"> +<?php include("div-article.html"); ?> +</div> + +</div> +</div> +</div> + |