diff options
author | zotlabs <mike@macgirvin.com> | 2017-08-23 00:01:02 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-08-23 00:01:02 -0700 |
commit | e084b776eee9f1fc66e3f4a37b92ec70ccc49286 (patch) | |
tree | bf19cfd1d3823ec13df1606319bd638e142a4849 /view/tpl | |
parent | 41ff8fdd375fcf395b547dd02f3bdcbb198ec0c1 (diff) | |
download | volse-hubzilla-e084b776eee9f1fc66e3f4a37b92ec70ccc49286.tar.gz volse-hubzilla-e084b776eee9f1fc66e3f4a37b92ec70ccc49286.tar.bz2 volse-hubzilla-e084b776eee9f1fc66e3f4a37b92ec70ccc49286.zip |
cards feature
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/cards.tpl | 8 | ||||
-rwxr-xr-x | view/tpl/jot.tpl | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/view/tpl/cards.tpl b/view/tpl/cards.tpl new file mode 100644 index 000000000..ae382a97f --- /dev/null +++ b/view/tpl/cards.tpl @@ -0,0 +1,8 @@ +<div class="generic-content-wrapper"> + <div class="section-title-wrapper"> + <h2>{{$title}}</h2> + </div> + {{$editor}} + {{$content}} +</div> + {{$pager}} diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 39ba9e59b..8e8070402 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -27,7 +27,7 @@ <input type="hidden" id="jot-consensus" name="consensus" value="{{if $consensus}}{{$consensus}}{{else}}0{{/if}}" /> <input type="hidden" id="jot-nocomment" name="nocomment" value="{{if $nocomment}}{{$nocomment}}{{else}}0{{/if}}" /> - {{if $webpage}} + {{if $webpage && $webpage != 6 }} <div id="jot-pagetitle-wrap" class="jothidden"> <input name="pagetitle" id="jot-pagetitle" type="text" placeholder="{{$placeholdpagetitle}}" value="{{$pagetitle}}"> </div> @@ -35,7 +35,7 @@ <div id="jot-title-wrap" class="jothidden"> <input name="title" id="jot-title" type="text" placeholder="{{$placeholdertitle}}" tabindex="1" value="{{$title}}"> </div> - {{if $catsenabled}} + {{if $catsenabled || $webpage == 6 }} <div id="jot-category-wrap" class="jothidden"> <input name="category" id="jot-category" type="text" placeholder="{{$placeholdercategory}}" value="{{$category}}" data-role="cat-tagsinput"> </div> |