mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-10 10:38:43 +00:00
0854940fe0
When using sub-directory blog, the 'blogof' not looks so good. And, there are duplicate 'blog' characters, which making people uncomfortable. So, for sub-directory blog, use 'blog' instead of 'blogof'. 'blog' is not as a sub folder or type anymore, use 'post' instead. BREAKING CHANGE: Due to the conflict of 'blog' sub-directory, when go to blog post, now should use 'blogs/{id}'; but when subdomain mode is on, you can still use 'blog' to access these blog posts. 'blogof' is no longer used, and you need to inform users that blog link is changed, to avoid the inaccessbility.
54 lines
2.2 KiB
PHP
54 lines
2.2 KiB
PHP
<?php
|
|
if ($is_preview) {
|
|
$readmore_pos = strpos($blog['content'], '<!-- readmore -->');
|
|
if ($readmore_pos !== false) {
|
|
$content = substr($blog['content'], 0, $readmore_pos).'<p><a href="'.HTML::blog_url(UOJContext::userid(), '/post/'.$blog['id']).'">阅读更多……</a></p>';
|
|
} else {
|
|
$content = $blog['content'];
|
|
}
|
|
} else {
|
|
$content = $blog['content'];
|
|
}
|
|
|
|
$extra_text = $blog['is_hidden'] ? '<span class="text-muted">[已隐藏]</span> ' : '';
|
|
|
|
$blog_type = $blog['type'] == 'B' ? 'post' : 'slide';
|
|
?>
|
|
<h2><?= $extra_text ?><a class="header-a" href="<?= HTML::blog_url(UOJContext::userid(), '/post/'.$blog['id']) ?>"><?= $blog['title'] ?></a></h2>
|
|
<div><?= $blog['post_time'] ?> <strong>By</strong> <?= getUserLink($blog['poster']) ?></div>
|
|
<?php if (!$show_title_only): ?>
|
|
<div class="panel panel-default">
|
|
<div class="panel-body">
|
|
<?php if ($blog_type == 'post'): ?>
|
|
<article><?= $content ?></article>
|
|
<?php elseif ($blog_type == 'slide'): ?>
|
|
<article>
|
|
<div class="embed-responsive embed-responsive-16by9">
|
|
<iframe class="embed-responsive-item" src="<?= HTML::blog_url(UOJContext::userid(), '/slide/'.$blog['id']) ?>"></iframe>
|
|
</div>
|
|
<div class="text-right top-buffer-sm">
|
|
<a class="btn btn-default btn-md" href="<?= HTML::blog_url(UOJContext::userid(), '/slide/'.$blog['id']) ?>"><span class="glyphicon glyphicon-fullscreen"></span> 全屏</a>
|
|
</div>
|
|
</article>
|
|
<?php endif ?>
|
|
</div>
|
|
<div class="panel-footer text-right">
|
|
<ul class="list-inline bot-buffer-no">
|
|
<li>
|
|
<?php foreach (queryBlogTags($blog['id']) as $tag): ?>
|
|
<?php echoBlogTag($tag) ?>
|
|
<?php endforeach ?>
|
|
</li>
|
|
<?php if ($is_preview): ?>
|
|
<li><a href="<?= HTML::blog_url(UOJContext::userid(), '/post/'.$blog['id']) ?>">阅读全文</a></li>
|
|
<?php endif ?>
|
|
<?php if (Auth::check() && (isSuperUser(Auth::user()) || Auth::id() == $blog['poster'])): ?>
|
|
<li><a href="<?=HTML::blog_url(UOJContext::userid(), '/'.$blog_type.'/'.$blog['id'].'/write')?>">修改</a></li>
|
|
<li><a href="<?=HTML::blog_url(UOJContext::userid(), '/post/'.$blog['id'].'/delete')?>">删除</a></li>
|
|
<?php endif ?>
|
|
<li><?= getClickZanBlock('B', $blog['id'], $blog['zan']) ?></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<?php endif ?>
|