mirror of
https://github.com/cnodejs/nodeclub.git
synced 2025-12-08 19:55:55 +00:00
99 lines
3.1 KiB
HTML
99 lines
3.1 KiB
HTML
<%- partial('sidebar') %>
|
|
|
|
<div id='content'>
|
|
<div class='panel'>
|
|
<div class='header'>
|
|
<ul class='breadcrumb'>
|
|
<li><a href='/'>主页</a><span class='divider'>/</span></li>
|
|
<li class='active'><%= user.name %></li>
|
|
</ul>
|
|
</div>
|
|
<div class='inner'>
|
|
<div class='user_big_avatar'>
|
|
<img src="<%= user.avatar_url %>" title="<%= user.name %>" />
|
|
</div>
|
|
<% if (locals.current_user && current_user._id != user._id) { %>
|
|
<% if (!locals.relation) { %>
|
|
<button class='btn btn-success follow_btn' action='follow'>加入关注</button>
|
|
<% } else { %>
|
|
<button class='btn follow_btn' action='un_follow'>取消关注</button>
|
|
<% } %>
|
|
<% } %>
|
|
<h2><%= user.name %></h2>
|
|
<div class='col_fade'>
|
|
<span><img src="<%- config.site_static_host %>/public/images/cert_icon&16.png" /> <%= user.follower_count %> 粉丝</span>
|
|
<% if(user.signature){ %>
|
|
<span><%= user.signature %></span>
|
|
<% } %>
|
|
</div>
|
|
<div class='user_profile'>
|
|
<ul class='unstyled'>
|
|
<% if(user.url){ %>
|
|
<li>
|
|
<img class='user_icon' src="<%- config.site_static_host %>/public/images/paper_airplane_icon&16.png" />
|
|
<a class='dark' href="<%= user.url %>" target='_blank'><%= user.url %></a>
|
|
</li>
|
|
<% } %>
|
|
<% if(user.location){ %>
|
|
<li>
|
|
<img class='user_icon' src="<%- config.site_static_host %>/public/images/compass_icon&16.png" />
|
|
<span class='col_fade'><%= user.location %></span>
|
|
</li>
|
|
<% } %>
|
|
<% if(user.weibo){ %>
|
|
<li>
|
|
<img class='user_icon' src="<%- config.site_static_host %>/public/images/twitter_2_icon&16.png" />
|
|
<a class='dark' href="<%= user.weibo %>" target='_blank'><%= user.weibo %></a>
|
|
</li>
|
|
<% } %>
|
|
</ul>
|
|
<% if (user.profile) { %>
|
|
<p><%= user.profile %></p>
|
|
<% } %>
|
|
</div>
|
|
<p class='col_fade'>于 <%= user.friendly_create_at %> 加入 <%= config.name %></p>
|
|
<% if(locals.current_user && current_user.is_admin){ %>
|
|
<% if(!user.is_star){ %>
|
|
<button class='btn' id='set_star_btn' action='set_star'>设为达人</button>
|
|
<% } else { %>
|
|
<button class='btn' id='set_star_btn' action='cancel_star'>取消达人</button>
|
|
<% } %>
|
|
<% } %>
|
|
</div>
|
|
</div>
|
|
<div class='panel'>
|
|
<div class='header'>
|
|
<span class='col_fade'><%= user.name %> 参与的话题</span>
|
|
</div>
|
|
<% if(locals.topics && topics.length > 0){ %>
|
|
<%- partial('topic/list', {topics:topics,pages:pages,current_pages:current_page,base:'/user/'+user.name+'/replies'}) %>
|
|
<% }else{ %>
|
|
<div class='inner'>
|
|
<p>无话题</p>
|
|
</div>
|
|
<% } %>
|
|
</div>
|
|
</div>
|
|
|
|
<% if (locals.current_user) { %>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$('#set_star_btn').click(function () {
|
|
var $me = $(this);
|
|
var action = $me.attr('action');
|
|
$.post('/user/'+action,{user_id: '<%= user._id %>'},function (data) {
|
|
if(data.status == 'success'){
|
|
if(action == 'set_star'){
|
|
$me.html('取消达人');
|
|
$me.attr('action','cancel_star');
|
|
}else{
|
|
$me.html('设为达人');
|
|
$me.attr('action','set_star');
|
|
}
|
|
}
|
|
},'json');
|
|
});
|
|
});
|
|
</script>
|
|
<% } %>
|