-
Notifications
You must be signed in to change notification settings - Fork 0
/
window_write.tpl
39 lines (37 loc) · 1.72 KB
/
window_write.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<div class="modal modal-write" id="modal_write">
<header class="modal-header">
<button type="button" class="close jqmClose" data-dismiss="modal" aria-hidden="true">×</button>
<h3>{$aLang.block_create}</h3>
</header>
{strip}
<div class="modal-body">
<ul class="unstyled inline write-list">
<li class="write-item-type-topic">
<a href="{router page='topic'}add" class="write-item-image"></a>
<a href="{router page='topic'}add" class="write-item-link">{$aLang.block_create_topic_topic}</a>
</li>
<li class="write-item-type-poll">
<a href="{router page='question'}add" class="write-item-image"></a>
<a href="{router page='question'}add" class="write-item-link">{$aLang.block_create_topic_question}</a>
</li>
<li class="write-item-type-link">
<a href="{router page='link'}add" class="write-item-image"></a>
<a href="{router page='link'}add" class="write-item-link">{$aLang.block_create_topic_link}</a>
</li>
<li class="write-item-type-photoset">
<a href="{router page='photoset'}add" class="write-item-image"></a>
<a href="{router page='photoset'}add" class="write-item-link">{$aLang.block_create_topic_photoset}</a>
</li>
<li class="write-item-type-blog">
<a href="{router page='blog'}add" class="write-item-image"></a>
<a href="{router page='blog'}add" class="write-item-link">{$aLang.block_create_blog}</a>
</li>
<li class="write-item-type-draft">
<a href="{router page='topic'}saved/" class="write-item-image"></a>
<a href="{router page='topic'}saved/" class="write-item-link">{$aLang.topic_menu_saved} {if $iUserCurrentCountTopicDraft}({$iUserCurrentCountTopicDraft}){/if}</a>
</li>
{hook run='write_item' isPopup=true}
</ul>
</div>
{/strip}
</div>