missed adding these files yesterday, they're needed for pages to work
This commit is contained in:
parent
6b6a742a1b
commit
b7d047483f
14
view/css/mod_page.css
Normal file
14
view/css/mod_page.css
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
.page-author {
|
||||
font-size: 1.2em;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.page-date {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
||||
.page-body {
|
||||
|
||||
}
|
7
view/tpl/page_display.tpl
Normal file
7
view/tpl/page_display.tpl
Normal file
@ -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>
|
7
view/tpl/smarty3/page_display.tpl
Normal file
7
view/tpl/smarty3/page_display.tpl
Normal file
@ -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>
|
Reference in New Issue
Block a user