diff options
author | friendica <info@friendica.com> | 2013-01-15 13:59:52 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-15 13:59:52 -0800 |
commit | b7d047483f005eb3d05efc62cf12c50e1e4e105e (patch) | |
tree | 5d57845037d3f238ce1ca262bb5aaf82c8e844e2 /view/tpl | |
parent | 6b6a742a1b9935b34c039bc8f33ef926f996c158 (diff) | |
download | volse-hubzilla-b7d047483f005eb3d05efc62cf12c50e1e4e105e.tar.gz volse-hubzilla-b7d047483f005eb3d05efc62cf12c50e1e4e105e.tar.bz2 volse-hubzilla-b7d047483f005eb3d05efc62cf12c50e1e4e105e.zip |
missed adding these files yesterday, they're needed for pages to work
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/page_display.tpl | 7 | ||||
-rw-r--r-- | view/tpl/smarty3/page_display.tpl | 7 |
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> |