diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-07-07 16:50:25 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-07-07 16:50:25 -0700 |
commit | 6b41074396f72f8c47e3d6479b1035cde4a5c7f8 (patch) | |
tree | 4c1a32fcd5c5c5db13c4418241af974d9dedd5d2 /view/tpl/page_display.tpl | |
parent | 7db1bd23f0056a5918f6f1657fdc3a968c18574e (diff) | |
parent | f6cf992aee86e69d1ea5790c22d4af40c266d79e (diff) | |
download | volse-hubzilla-6b41074396f72f8c47e3d6479b1035cde4a5c7f8.tar.gz volse-hubzilla-6b41074396f72f8c47e3d6479b1035cde4a5c7f8.tar.bz2 volse-hubzilla-6b41074396f72f8c47e3d6479b1035cde4a5c7f8.zip |
Merge branch 'master' of https://github.com/redmatrix/redmatrix
Diffstat (limited to 'view/tpl/page_display.tpl')
-rwxr-xr-x | view/tpl/page_display.tpl | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/view/tpl/page_display.tpl b/view/tpl/page_display.tpl index 5328648b9..a320920c7 100755 --- a/view/tpl/page_display.tpl +++ b/view/tpl/page_display.tpl @@ -1,9 +1,14 @@ <div class="page"> - -<div class="generic-content-wrapper" id="page-content-wrapper" > - {{if $title}}<h2 class="page-title">{{$title}}</h2>{{/if}} - <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> + <div class="generic-content-wrapper" id="page-content-wrapper" > + {{if $title}} + <div class="section-title-wrapper"> + <h2 class="page-title">{{$title}}</h2> + </div> + {{/if}} + <div class="section-content-wrapper"> + <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> + </div> </div> |