aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl
diff options
context:
space:
mode:
Diffstat (limited to 'view/tpl')
-rw-r--r--view/tpl/page_display.tpl7
-rw-r--r--view/tpl/smarty3/page_display.tpl7
2 files changed, 14 insertions, 0 deletions
diff --git a/view/tpl/page_display.tpl b/view/tpl/page_display.tpl
new file mode 100644
index 000000000..a79d505dd
--- /dev/null
+++ b/view/tpl/page_display.tpl
@@ -0,0 +1,7 @@
+<div class=page">
+ <h3 class="page-title">$title</h3>
+
+ <div class="page-author"><a class=="page-author-link" href="$auth_url">$author</a></div>
+ <div class="page-date">$date</div>
+ <div class="page-body">body</div>
+</div>
diff --git a/view/tpl/smarty3/page_display.tpl b/view/tpl/smarty3/page_display.tpl
new file mode 100644
index 000000000..98bb81aeb
--- /dev/null
+++ b/view/tpl/smarty3/page_display.tpl
@@ -0,0 +1,7 @@
+<div class=page">
+ <h3 class="page-title">{{$title}}</h3>
+
+ <div class="page-author"><a class=="page-author-link" href="{{$auth_url}}">{{$author}}</a></div>
+ <div class="page-date">{{$date}}</div>
+ <div class="page-body">body</div>
+</div>