mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
124 lines
4.2 KiB
XML
124 lines
4.2 KiB
XML
{extends "../@listView.xml"}
|
|
{var $iterator = iterator_to_array($notes)}
|
|
{var $page = $paginatorConf->page}
|
|
|
|
{block title}{_notes}{/block}
|
|
|
|
{block header}
|
|
{if isset($thisUser) && $thisUser->getId() == $owner->getId()}
|
|
{_my_notes}
|
|
{else}
|
|
<a href="{$owner->getURL()}">
|
|
{$owner->getCanonicalName()}</a>
|
|
»
|
|
{_notes}
|
|
{/if}
|
|
{/block}
|
|
|
|
{block size}
|
|
<div style="padding-bottom: 0px; padding-top: 0;" class="summaryBar">
|
|
<div class="summary">
|
|
{tr("notes_list", $count)}
|
|
<span n:if="isset($thisUser) && $thisUser->getId() == $owner->getId()">
|
|
|
|
|
<a href="/notes/create">{_create_note}</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
{/block}
|
|
|
|
{block actions}
|
|
|
|
{/block}
|
|
|
|
{* BEGIN ELEMENTS DESCRIPTION *}
|
|
|
|
{block specpage}
|
|
<style>
|
|
#userContent img {
|
|
max-width: 245pt;
|
|
max-height: 200pt;
|
|
}
|
|
|
|
#userContent blockquote {
|
|
background-color: #f3f3f3;
|
|
border-bottom: 5px solid #969696;
|
|
padding: 1;
|
|
}
|
|
|
|
#userContent cite {
|
|
margin-top: 1em;
|
|
display: block;
|
|
}
|
|
|
|
#userContent cite::before {
|
|
content: "— ";
|
|
}
|
|
|
|
#userContent .underline {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
|
|
<div class="container_gray" style="background: white; border-top: none;">
|
|
|
|
{var $data = is_array($iterator) ? $iterator : iterator_to_array($iterator)}
|
|
{if sizeof($data) > 0}
|
|
|
|
<div n:foreach="$data as $dat">
|
|
<div class="profile_thumb">
|
|
<a href="{$owner->getURL()}">
|
|
<img src="{$owner->getAvatarUrl('miniscule')}" style="width: 50px;">
|
|
</a>
|
|
</div>
|
|
<article class="note_body" id="userContent" style="width: 540px; display: inline-block; margin-bottom: 35px;">
|
|
<div class="note_header">
|
|
<div class="note_title">
|
|
<div class="note_title">
|
|
<a href="/note{$dat->getPrettyId()}">{$dat->getName()}</a>
|
|
</div>
|
|
</div>
|
|
<div class="byline">
|
|
<span><a href="{$owner->getURL()}">{$owner->getCanonicalName()}</a></span> {$dat->getPublicationTime()}
|
|
<span n:if="$dat->getEditTime() > $dat->getPublicationTime()">({_edited} {$dat->getEditTime()})</span>
|
|
</div>
|
|
</div>
|
|
<div style="margin-left: 6px;">
|
|
{$dat->getText(750)|noescape}
|
|
</div>
|
|
<div class="note_footer" style="margin: 10px 0 0;">
|
|
<div class="comments_count">
|
|
<a href="/note{$dat->getPrettyId()}">
|
|
|
|
{if $dat->getCommentsCount() > 0}
|
|
{_comments} ({$dat->getCommentsCount()})
|
|
{else}
|
|
{_no_comments}
|
|
{/if}
|
|
|
|
</a>
|
|
<span n:if="isset($thisUser) && $thisUser->getId() === $dat->getOwner()->getId()"> |
|
|
<a id="_noteDelete" href="/note{$dat->getOwner()->getId()}_{$dat->getId()}/delete">{_delete}</a>
|
|
|
|
|
<a href="/note{$dat->getOwner()->getId()}_{$dat->getVirtualId()}/edit">{_edit}</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
</div>
|
|
|
|
{else}
|
|
{if isset($thisUser) && $thisUser->getId() == $owner->getId()}
|
|
|
|
<div style="padding: 10px 20px 20px;"><h4 style="border: none;padding-bottom: 5px;">{_welcome}</h4>{_notes_start_screen}</div>
|
|
|
|
{else}
|
|
{ifset customErrorMessage}
|
|
{include ../customErrorMessage}
|
|
{else}
|
|
{include ../components/nothing.xml}
|
|
{/ifset}
|
|
{/if}
|
|
{/if}
|
|
</div>
|
|
{/block}
|