Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<!-- IF S_USER_LOGGED_IN and not S_IS_BOT -->
<li>
<a href="{ROOT_PATH}ucp.php?i=\sheer\postbookmark\ucp\postbookmark_module">
<i class="icon fa-bookmark fa-fw" aria-hidden="true"> </i>
{L_BOOKMARKS}
</a>
</li>
<!-- ENDIF -->
25 changes: 13 additions & 12 deletions styles/prosilver/template/ucp_postbookmark_body.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,17 @@ <h2>{L_UCP_POSTBOOKMARK}</h2>
<!-- IF S_NO_DISPLAY_BOOKMARKS -->
<p class="error">{L_BOOKMARKS_DISABLED}</p>
<!-- ELSE -->

<!-- IF .postrow -->
<ul class="topiclist">
<ul class="topiclist missing-column">
<li class="header">
<dl class="icon">
<dt>{L_BOOKMARKS}</dt>
<dd class="lastpost"><span>{L_COMMENT}</span></dd>
<dl>
<dt><div class="list-inner">{L_BOOKMARKS}</div></dt>
<dd class="info"><span>{L_COMMENT}</span></dd>
<dd class="mark">{L_MARK}</dd>
</dl>
</li>
</ul>
<ul class="topiclist cplist">
<ul class="topiclist cplist missing-column">

<!-- BEGIN postrow -->
<li class="row<!-- IF postrow.S_POST_REPORTED --> reported<!-- ELSEIF postrow.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
Expand All @@ -34,14 +33,16 @@ <h2>{L_UCP_POSTBOOKMARK}</h2>
<!-- ELSE -->
<dl>
<dt>
<div class="list-inner with-mark">
<a href="{postrow.U_VIEW_POST}" class="topictitle">{postrow.POST_TITLE}</a><br />
{L_POST_BY_AUTHOR} {postrow.TOPIC_AUTHOR} &raquo; {postrow.POST_TIME}
<div class="list-inner">
<a class="topictitle" href="{postrow.U_VIEW_POST}">{postrow.POST_TITLE}</a><br />
{L_POST_BY_AUTHOR}{L_COLON} {postrow.TOPIC_AUTHOR} &raquo; {postrow.POST_TIME}
<div class="responsive-show" style="display: none;">
{L_COMMENT}{L_COLON} {postrow.BOOKMARK_DESC}<br />
{L_ADDED}{L_COLON} {postrow.BOOKMARK_TIME}
</div>
</div>
</dt>
<dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn> {postrow.BOOKMARK_DESC}
<br />{L_ADDED}&raquo; {postrow.BOOKMARK_TIME}</span>
</dd>
<dd class="info"><span>{L_COMMENT}{L_COLON} {postrow.BOOKMARK_DESC}<br />{L_ADDED}{L_COLON} {postrow.BOOKMARK_TIME}</span></dd>
<dd class="mark"><input type="checkbox" name="t[{postrow.POST_ID}]" id="t{postrow.POST_ID}" /></dd>
</dl>
<!-- ENDIF -->
Expand Down