commit
31e08ee6f3
File diff suppressed because one or more lines are too long
|
@ -8,7 +8,7 @@ function get_gravatar(email, size) {
|
|||
|
||||
var size = size || 80;
|
||||
|
||||
return 'https://gravatar.shino.cc/avatar/' + MD5(email) + '.jpg?s=' + size + '&d=mm';
|
||||
return 'https://gravatar.2heng.xin/avatar/' + MD5(email) + '.jpg?s=' + size + '&d=mm';
|
||||
}
|
||||
|
||||
// sync css
|
||||
|
|
|
@ -88,7 +88,7 @@
|
|||
'comment_notes_after' => '',
|
||||
'comment_notes_before' => '',
|
||||
'fields' => apply_filters( 'comment_form_default_fields', array(
|
||||
'avatar' => '<div class="cmt-info-container"><div class="comment-user-avatar"><img src="https://gravatar.shino.cc/avatar/f11f237b3de93c93b24045e71f7f65c6?s=80&d=mm&r=g"><div class="socila-check qq-check"><i class="fa fa-qq" aria-hidden="true"></i></div><div class="socila-check gravatar-check"><i class="fa fa-google" aria-hidden="true"></i></div></div>',
|
||||
'avatar' => '<div class="cmt-info-container"><div class="comment-user-avatar"><img src="https://gravatar.2heng.xin/avatar/f11f237b3de93c93b24045e71f7f65c6?s=80&d=mm&r=g"><div class="socila-check qq-check"><i class="fa fa-qq" aria-hidden="true"></i></div><div class="socila-check gravatar-check"><i class="fa fa-google" aria-hidden="true"></i></div></div>',
|
||||
'author' =>
|
||||
'<div class="popup cmt-popup cmt-author" onclick="cmt_showPopup(this)"><span class="popuptext" id="thePopup" style="margin-left: -115px;width: 230px;">' . __("Auto pull nickname and avatar with a QQ num. entered", "sakura")/*输入QQ号将自动拉取昵称和头像*/ . '</span><input type="text" placeholder="' . __("Nickname or QQ number", "sakura") /*昵称或QQ号*/. ' ' . ( $req ? '(' . __("Name* ", "sakura") . ')' : '') . '" name="author" id="author" value="' . esc_attr($comment_author) . '" size="22" autocomplete="off" tabindex="1" ' . ($req ? "aria-required='true'" : '' ). ' /></div>',
|
||||
'email' =>
|
||||
|
|
|
@ -199,9 +199,9 @@ function sakura_scripts()
|
|||
$movies = akina_option('focus_amv') ? array('url' => akina_option('amv_url'), 'name' => akina_option('amv_title'), 'live' => $mv_live) : 'close';
|
||||
$auto_height = akina_option('focus_height') ? 'fixed' : 'auto';
|
||||
$code_lamp = 'close';
|
||||
if (wp_is_mobile()) {
|
||||
$auto_height = 'fixed';
|
||||
}
|
||||
// if (wp_is_mobile()) {
|
||||
// $auto_height = 'fixed';
|
||||
// }
|
||||
//拦截移动端
|
||||
version_compare($GLOBALS['wp_version'], '5.1', '>=') ? $reply_link_version = 'new' : $reply_link_version = 'old';
|
||||
wp_localize_script('app', 'Poi', array(
|
||||
|
@ -215,6 +215,7 @@ function sakura_scripts()
|
|||
'reply_link_version' => $reply_link_version,
|
||||
'api' => esc_url_raw(rest_url()),
|
||||
'nonce' => wp_create_nonce('wp_rest'),
|
||||
'google_analytics_id' => akina_option('google_analytics_id', '')
|
||||
));
|
||||
}
|
||||
add_action('wp_enqueue_scripts', 'sakura_scripts');
|
||||
|
@ -609,7 +610,9 @@ function get_link_items()
|
|||
function gravatar_cn($url)
|
||||
{
|
||||
$gravatar_url = array('0.gravatar.com', '1.gravatar.com', '2.gravatar.com', 'secure.gravatar.com');
|
||||
return str_replace($gravatar_url, 'cn.gravatar.com', $url);
|
||||
//return str_replace($gravatar_url, 'cn.gravatar.com', $url);
|
||||
//官方服务器近期大陆访问 429,建议使用镜像
|
||||
return str_replace( $gravatar_url, 'gravatar.2heng.xin', $url );
|
||||
}
|
||||
add_filter('get_avatar_url', 'gravatar_cn', 4);
|
||||
|
||||
|
|
15
inc/api.php
15
inc/api.php
|
@ -268,21 +268,24 @@ function SMMS_API($image)
|
|||
*/
|
||||
function cache_search_json()
|
||||
{
|
||||
global $more;
|
||||
$vowels = array("[", "{", "]", "}", "<", ">", "\r\n", "\r", "\n", "-", "'", '"', '`', " ", ":", ";", '\\', " ", "toc");
|
||||
$regex = <<<EOS
|
||||
/<\/?[a-zA-Z]+("[^"]*"|'[^']*'|[^'">])*>|begin[\S\s]*\/begin|hermit[\S\s]*\/hermit|img[\S\s]*\/img|{{.*?}}|:.*?:/m
|
||||
EOS;
|
||||
$more = 1;
|
||||
|
||||
$posts = new WP_Query('posts_per_page=-1&post_status=publish&post_type=post');
|
||||
while ($posts->have_posts()): $posts->the_post();
|
||||
$output .= '{"type":"post","link":"' . get_permalink() . '","title":' . json_encode(get_the_title()) . ',"comments":"' . get_comments_number('0', '1', '%') . '","text":' . json_encode(str_replace($vowels, " ", preg_replace($regex, ' ', get_the_content()))) . '},';
|
||||
$output .= '{"type":"post","link":"' . get_permalink() . '","title":' . json_encode(get_the_title()) . ',"comments":"' . get_comments_number('0', '1', '%') . '","text":' . json_encode(str_replace($vowels, " ", preg_replace($regex, ' ', apply_filters( 'the_content', get_the_content())))) . '},';
|
||||
endwhile;
|
||||
wp_reset_postdata();
|
||||
|
||||
$pages = get_pages();
|
||||
foreach ($pages as $page) {
|
||||
$output .= '{"type":"page","link":"' . get_page_link($page) . '","title":' . json_encode($page->post_title) . ',"comments":"' . $page->comment_count . '","text":' . json_encode(str_replace($vowels, " ", preg_replace($regex, ' ', $page->post_content))) . '},';
|
||||
}
|
||||
$pages = new WP_Query('posts_per_page=-1&post_status=publish&post_type=page');
|
||||
while ($pages->have_posts()): $pages->the_post();
|
||||
$output .= '{"type":"page","link":"' . get_permalink() . '","title":' . json_encode(get_the_title()) . ',"comments":"' . get_comments_number('0', '1', '%') . '","text":' . json_encode(str_replace($vowels, " ", preg_replace($regex, ' ', apply_filters( 'the_content', get_the_content())))) . '},';
|
||||
endwhile;
|
||||
wp_reset_postdata();
|
||||
|
||||
$tags = get_tags();
|
||||
foreach ($tags as $tag) {
|
||||
|
@ -402,7 +405,7 @@ function get_qq_avatar(){
|
|||
$encrypted=$_GET["qq"];
|
||||
if(isset($encrypted)){
|
||||
$iv = str_repeat($sakura_privkey, 2);
|
||||
$encrypted = urldecode(base64_decode($encrypted));
|
||||
$encrypted = base64_decode(urldecode($encrypted));
|
||||
$qq_number = openssl_decrypt($encrypted, 'aes-128-cbc', $sakura_privkey, 0, $iv);
|
||||
preg_match('/^\d{3,}$/', $qq_number, $matches);
|
||||
$imgurl='https://q2.qlogo.cn/headimg_dl?dst_uin='.$matches[0].'&spec=100';
|
||||
|
|
|
@ -61,6 +61,9 @@ if ( akina_option('theme_skin') ) { ?>
|
|||
}
|
||||
<?php } ?>
|
||||
|
||||
.post-list-thumb{opacity: 0}
|
||||
.post-list-show {opacity: 1}
|
||||
|
||||
<?php } // theme-skin ?>
|
||||
<?php // Custom style
|
||||
if ( akina_option('site_custom_style') ) {
|
||||
|
|
|
@ -73,6 +73,7 @@ mashiro_option.float_player_on = true;
|
|||
|
||||
mashiro_option.cover_api = "<?php echo rest_url('sakura/v1/image/cover'); ?>";
|
||||
|
||||
mashiro_option.windowheight = /Mobile|Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent) ? 'fixed' : 'auto';
|
||||
/*End of Initial Variables*/
|
||||
</script>
|
||||
<?php }
|
||||
|
|
|
@ -791,9 +791,6 @@ function siren_get_browsers($ua){
|
|||
}elseif (preg_match('#Edge/([a-zA-Z0-9.]+)#i', $ua, $matches)){
|
||||
$title = 'Edge '. $matches[1];
|
||||
$icon = 'edge';
|
||||
}elseif (preg_match('#Edg/([a-zA-Z0-9.]+)#i', $ua, $matches)){
|
||||
$title = 'Edge Dev (Chromium) '. $matches[1];
|
||||
$icon = 'edge';
|
||||
}elseif (preg_match('#360([a-zA-Z0-9.]+)#i', $ua, $matches)) {
|
||||
$title = '360 Browser '. $matches[1];
|
||||
$icon = '360se';
|
||||
|
|
148
js/sakura-app.js
148
js/sakura-app.js
|
@ -5,6 +5,7 @@
|
|||
* @date 2019.8.3
|
||||
*/
|
||||
mashiro_global.variables = new function () {
|
||||
this.has_hls = false;
|
||||
this.skinSecter = true;
|
||||
}
|
||||
mashiro_global.ini = new function () {
|
||||
|
@ -77,10 +78,12 @@ function post_list_show_animation() {
|
|||
function callback(entries) {
|
||||
entries.forEach((article) => {
|
||||
if (article.target.classList.contains("post-list-show")) {
|
||||
article.target.style.willChange = 'auto';
|
||||
io.unobserve(article.target)
|
||||
} else {
|
||||
if (article.isIntersecting) {
|
||||
article.target.classList.add("post-list-show");
|
||||
article.target.style.willChange = 'auto';
|
||||
io.unobserve(article.target)
|
||||
}
|
||||
}
|
||||
|
@ -416,22 +419,15 @@ $(document).ready(function () {
|
|||
preBG();
|
||||
});
|
||||
});
|
||||
if (document.body.clientWidth <= 860) {
|
||||
window.onscroll = function () {
|
||||
scrollFunction()
|
||||
};
|
||||
|
||||
function scrollFunction() {
|
||||
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
|
||||
addComment.I("moblieGoTop").style.display = "block";
|
||||
function topFunction() {
|
||||
if ('scrollBehavior' in document.documentElement.style) {
|
||||
window.scrollTo({
|
||||
top: 0,
|
||||
behavior: "smooth"
|
||||
})
|
||||
} else {
|
||||
addComment.I("moblieGoTop").style.display = "none";
|
||||
}
|
||||
}
|
||||
|
||||
function topFunction() {
|
||||
document.body.scrollTop = 0;
|
||||
document.documentElement.scrollTop = 0;
|
||||
window.scrollSmoothTo(0)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -476,10 +472,20 @@ function timeSeriesReload(flag) {
|
|||
var al_expand_collapse_click = 0;
|
||||
$('#al_expand_collapse').click(function () {
|
||||
if (al_expand_collapse_click == 0) {
|
||||
$al_post_list.show(400);
|
||||
$al_post_list.each(function(index){
|
||||
var $this = $(this),
|
||||
s = setTimeout(function() {
|
||||
$this.show(400);
|
||||
}, 50 * index);
|
||||
});
|
||||
al_expand_collapse_click++;
|
||||
} else if (al_expand_collapse_click == 1) {
|
||||
$al_post_list.hide(400);
|
||||
$al_post_list.each(function(index){
|
||||
var $this = $(this),
|
||||
h = setTimeout(function() {
|
||||
$this.hide(400);
|
||||
}, 50 * index);
|
||||
});
|
||||
al_expand_collapse_click--;
|
||||
}
|
||||
});
|
||||
|
@ -523,9 +529,7 @@ function killCoverVideo() {
|
|||
}
|
||||
}
|
||||
|
||||
function coverVideoIni() {
|
||||
if ($('video').hasClass('hls')) {
|
||||
$.getScript("https://cdn.jsdelivr.net/gh/mashirozx/Sakura@3.3.3/cdn/js/src/16.hls.js", function(){
|
||||
function loadHls(){
|
||||
var video = addComment.I('coverVideo');
|
||||
var video_src = $('#coverVideo').attr('data-src');
|
||||
if (Hls.isSupported()) {
|
||||
|
@ -541,7 +545,18 @@ function coverVideoIni() {
|
|||
video.play();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function coverVideoIni() {
|
||||
if ($('video').hasClass('hls')) {
|
||||
if (mashiro_global.variables.has_hls){
|
||||
loadHls();
|
||||
}else{
|
||||
$.getScript("https://cdn.jsdelivr.net/gh/mashirozx/Sakura@3.3.3/cdn/js/src/16.hls.js", function(){
|
||||
loadHls();
|
||||
mashiro_global.variables.has_hls = true;
|
||||
});
|
||||
}
|
||||
//console.info('ini:coverVideoIni()');
|
||||
}
|
||||
}
|
||||
|
@ -864,7 +879,9 @@ function getqqinfo() {
|
|||
}
|
||||
var emailAddressFlag = cached.filter('#email').val();
|
||||
cached.filter('#author').on('blur', function () {
|
||||
var qq = cached.filter('#author').val();
|
||||
var qq = cached.filter('#author').val(),
|
||||
$reg = /^[1-9]\d{4,9}$/;
|
||||
if ($reg.test(qq)) {
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: mashiro_option.qq_api_url + '?qq=' + qq + '&_wpnonce=' + Poi.nonce,
|
||||
|
@ -911,6 +928,7 @@ function getqqinfo() {
|
|||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
// $.ajax({
|
||||
// type: 'get',
|
||||
// url: mashiro_option.qq_avatar_api_url + '?type=getqqavatar&qq=' + qq,
|
||||
|
@ -1216,13 +1234,6 @@ var home = location.href,
|
|||
Siren = {
|
||||
MN: function () {
|
||||
$('.iconflat').on('click', function () {
|
||||
if ($("#main-container").hasClass("open")) {
|
||||
$('.iconflat').css('width', '50px').css('height', '50px');
|
||||
$('.openNav').css('height', '50px');
|
||||
} else {
|
||||
$('.iconflat').css('width', '100%').css('height', '100%');
|
||||
$('.openNav').css('height', '100%');
|
||||
}
|
||||
$('body').toggleClass('navOpen');
|
||||
$('#main-container,#mo-nav,.openNav').toggleClass('open');
|
||||
});
|
||||
|
@ -1321,25 +1332,15 @@ var home = location.href,
|
|||
});
|
||||
},
|
||||
AH: function () {
|
||||
if (Poi.windowheight == 'auto') {
|
||||
if (Poi.windowheight == 'auto' && mashiro_option.windowheight == 'auto') {
|
||||
if ($('h1.main-title').length > 0) {
|
||||
var _height = $(window).height() + "px";
|
||||
$('#centerbg').css({
|
||||
'height': _height
|
||||
'height': '100vh'
|
||||
});
|
||||
$('#bgvideo').css({
|
||||
'min-height': _height
|
||||
'min-height': '100vh'
|
||||
});
|
||||
window.resizeFlag = null;
|
||||
$(window).resize(function () {
|
||||
//直接resize性能爆炸,改成延时
|
||||
if (resizeFlag = null) {
|
||||
clearTimeout(resizeFlag);
|
||||
}
|
||||
resizeFlag = setTimeout(function () {
|
||||
Siren.AH();
|
||||
}, 1000);
|
||||
})
|
||||
}
|
||||
} else {
|
||||
$('.headertop').addClass('headertop-bar');
|
||||
|
@ -1534,6 +1535,7 @@ var home = location.href,
|
|||
});
|
||||
},
|
||||
NH: function () {
|
||||
if(document.body.clientWidth > 860){
|
||||
var h1 = 0;
|
||||
$(window).scroll(function () {
|
||||
var s = $(document).scrollTop(),
|
||||
|
@ -1545,6 +1547,7 @@ var home = location.href,
|
|||
cached.addClass('yya');
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
XLS: function () {
|
||||
$body = (window.opera) ? (document.compatMode == "CSS1Compat" ? $('html') : $('body')) : $('html,body');
|
||||
|
@ -1719,6 +1722,7 @@ var home = location.href,
|
|||
$body = (window.opera) ? (document.compatMode == "CSS1Compat" ? $('html') : $('body')) : $('html,body');
|
||||
$('body').on('click', '#comments-navi a', function (e) {
|
||||
e.preventDefault();
|
||||
var path = $(this)[0].pathname;
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url: $(this).attr('href'),
|
||||
|
@ -1738,6 +1742,11 @@ var home = location.href,
|
|||
$('#loading-comments').after(result.fadeIn(500));
|
||||
$('ul.commentwrap').after(nextlink);
|
||||
lazyload();
|
||||
if (window.gtag) {
|
||||
gtag('config', Poi.google_analytics_id, {
|
||||
'page_path': path
|
||||
});
|
||||
}
|
||||
code_highlight_style();
|
||||
click_to_view_image();
|
||||
}
|
||||
|
@ -1750,36 +1759,43 @@ var home = location.href,
|
|||
document.body.addEventListener('input', POWERMODE)
|
||||
},
|
||||
GT: function () {
|
||||
var offset = 100,
|
||||
offset_opacity = 1200,
|
||||
scroll_top_duration = 700,
|
||||
$back_to_top = $('.cd-top');
|
||||
$(window).scroll(function () {
|
||||
if ($(this).scrollTop() > offset) {
|
||||
$back_to_top.addClass('cd-is-visible');
|
||||
$(".changeSkin-gear").css("bottom", "0");
|
||||
if ($(window).height() > 950) {
|
||||
$(".cd-top.cd-is-visible").css("top", "0");
|
||||
var cwidth = document.body.clientWidth,
|
||||
cheight = window.innerHeight,
|
||||
pc_to_top = document.querySelector(".cd-top"),
|
||||
mb_to_top = document.querySelector("#moblieGoTop"),
|
||||
changeskin = document.querySelector(".changeSkin-gear");
|
||||
|
||||
$(window).scroll(function() {
|
||||
if (cwidth <= 860) {
|
||||
if ($(this).scrollTop() > 20) {
|
||||
mb_to_top.style.transform = "scale(1)";
|
||||
} else {
|
||||
$(".cd-top.cd-is-visible").css("top", ($(window).height() - 950) + "px");
|
||||
mb_to_top.style.transform = "scale(0)";
|
||||
}
|
||||
} else {
|
||||
$(".changeSkin-gear").css("bottom", "-999px");
|
||||
$(".cd-top.cd-is-visible").css("top", "-900px");
|
||||
$back_to_top.removeClass('cd-is-visible cd-fade-out');
|
||||
if ($(this).scrollTop() > 100) {
|
||||
pc_to_top.classList.add("cd-is-visible");
|
||||
changeskin.style.bottom = "0";
|
||||
if (cheight > 950) {
|
||||
pc_to_top.style.top = "0";
|
||||
} else {
|
||||
pc_to_top.style.top = cheight - 950 + "px";
|
||||
}
|
||||
} else {
|
||||
changeskin.style.bottom = "-999px";
|
||||
pc_to_top.style.top = "-999px";
|
||||
pc_to_top.classList.remove("cd-fade-out", "cd-is-visible");
|
||||
}
|
||||
if ($(this).scrollTop() > 1200) {
|
||||
pc_to_top.classList.add("cd-fade-out");
|
||||
}
|
||||
if ($(this).scrollTop() > offset_opacity) {
|
||||
$back_to_top.addClass('cd-fade-out');
|
||||
}
|
||||
});
|
||||
|
||||
//smooth scroll to top
|
||||
$back_to_top.on('click', function (event) {
|
||||
event.preventDefault();
|
||||
$('body,html').animate({
|
||||
scrollTop: 0,
|
||||
}, scroll_top_duration);
|
||||
return false;
|
||||
});
|
||||
pc_to_top.onclick = function() {
|
||||
topFunction();
|
||||
}
|
||||
}
|
||||
}
|
||||
$(function () {
|
||||
|
@ -1825,6 +1841,12 @@ $(function () {
|
|||
$.getScript("//static.duoshuo.com/embed.js");
|
||||
}
|
||||
}
|
||||
}).on('pjax:end', function() {
|
||||
if (window.gtag){
|
||||
gtag('config', Poi.google_analytics_id, {
|
||||
'page_path': window.location.pathname
|
||||
});
|
||||
}
|
||||
}).on('submit', '.search-form,.s-search', function (event) {
|
||||
event.preventDefault();
|
||||
$.pjax.submit(event, '#page', {
|
||||
|
|
Binary file not shown.
|
@ -1,15 +1,15 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sakura\n"
|
||||
"POT-Creation-Date: 2020-01-07 17:27+0800\n"
|
||||
"PO-Revision-Date: 2020-01-07 17:27+0800\n"
|
||||
"POT-Creation-Date: 2020-02-13 23:59+0800\n"
|
||||
"PO-Revision-Date: 2020-02-13 23:59+0800\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
||||
|
@ -181,35 +181,35 @@ msgstr ""
|
|||
msgid "This guy is so lazy ╮(╯▽╰)╭"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1327
|
||||
#: functions.php:1329
|
||||
msgid "All expand/collapse"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1348 options.php:834
|
||||
#: functions.php:1350 options.php:834
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1352
|
||||
#: functions.php:1354
|
||||
msgid " post(s)"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1375 functions.php:1378 inc/theme_plus.php:478
|
||||
#: functions.php:1377 functions.php:1380 inc/theme_plus.php:478
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1604
|
||||
#: functions.php:1606
|
||||
msgid "<b>ERROR</b>: This email domain (<b>@"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1709
|
||||
#: functions.php:1711
|
||||
msgid "QQ"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1779
|
||||
#: functions.php:1781
|
||||
msgid "Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1891
|
||||
#: functions.php:1893
|
||||
msgid ""
|
||||
"<b> For a better experience, please do not set <a href=\"/wp-admin/options-"
|
||||
"permalink.php\"> permalink </a> as plain. To do this, you may need to "
|
||||
|
@ -1710,17 +1710,17 @@ msgstr "Search result: %s"
|
|||
msgid "NOTHING"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/content-image.php:35 tpl/content-status.php:31 tpl/content-thumb.php:53
|
||||
#: tpl/content-image.php:35 tpl/content-status.php:31 tpl/content-thumb.php:56
|
||||
#: tpl/content.php:34
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/content-image.php:35 tpl/content-status.php:31 tpl/content-thumb.php:53
|
||||
#: tpl/content-image.php:35 tpl/content-status.php:31 tpl/content-thumb.php:56
|
||||
#: tpl/content.php:34
|
||||
msgid "Comments"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/content-image.php:38 tpl/content-status.php:34 tpl/content-thumb.php:52
|
||||
#: tpl/content-image.php:38 tpl/content-status.php:34 tpl/content-thumb.php:55
|
||||
#: tpl/content.php:37
|
||||
msgid "Hit"
|
||||
msgid_plural "Hits"
|
||||
|
@ -1728,7 +1728,7 @@ msgstr[0] ""
|
|||
msgstr[1] ""
|
||||
|
||||
#: tpl/content-none.php:14
|
||||
msgid "There is noyhing here!"
|
||||
msgid "There is nothing here!"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/content-none.php:21
|
||||
|
|
|
@ -3,14 +3,14 @@ msgid ""
|
|||
msgstr ""
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
"Project-Id-Version: Sakura\n"
|
||||
"POT-Creation-Date: 2020-01-07 17:27+0800\n"
|
||||
"POT-Creation-Date: 2020-02-13 23:59+0800\n"
|
||||
"PO-Revision-Date: 2019-11-01 14:27+0800\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
||||
"X-Poedit-WPHeader: style.css\n"
|
||||
|
@ -180,35 +180,35 @@ msgstr ""
|
|||
msgid "This guy is so lazy ╮(╯▽╰)╭"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1327
|
||||
#: functions.php:1329
|
||||
msgid "All expand/collapse"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1348 options.php:834
|
||||
#: functions.php:1350 options.php:834
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1352
|
||||
#: functions.php:1354
|
||||
msgid " post(s)"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1375 functions.php:1378 inc/theme_plus.php:478
|
||||
#: functions.php:1377 functions.php:1380 inc/theme_plus.php:478
|
||||
msgid "Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1604
|
||||
#: functions.php:1606
|
||||
msgid "<b>ERROR</b>: This email domain (<b>@"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1709
|
||||
#: functions.php:1711
|
||||
msgid "QQ"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1779
|
||||
#: functions.php:1781
|
||||
msgid "Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1891
|
||||
#: functions.php:1893
|
||||
msgid ""
|
||||
"<b> For a better experience, please do not set <a href=\"/wp-admin/options-permalink.php\"> "
|
||||
"permalink </a> as plain. To do this, you may need to configure <a href=\"https://www.wpdaxue."
|
||||
|
@ -1675,22 +1675,22 @@ msgstr ""
|
|||
msgid "NOTHING"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/content-image.php:35 tpl/content-status.php:31 tpl/content-thumb.php:53 tpl/content.php:34
|
||||
#: tpl/content-image.php:35 tpl/content-status.php:31 tpl/content-thumb.php:56 tpl/content.php:34
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/content-image.php:35 tpl/content-status.php:31 tpl/content-thumb.php:53 tpl/content.php:34
|
||||
#: tpl/content-image.php:35 tpl/content-status.php:31 tpl/content-thumb.php:56 tpl/content.php:34
|
||||
msgid "Comments"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/content-image.php:38 tpl/content-status.php:34 tpl/content-thumb.php:52 tpl/content.php:37
|
||||
#: tpl/content-image.php:38 tpl/content-status.php:34 tpl/content-thumb.php:55 tpl/content.php:37
|
||||
msgid "Hit"
|
||||
msgid_plural "Hits"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: tpl/content-none.php:14
|
||||
msgid "There is noyhing here!"
|
||||
msgid "There is nothing here!"
|
||||
msgstr ""
|
||||
|
||||
#: tpl/content-none.php:21
|
||||
|
|
Binary file not shown.
|
@ -1,15 +1,15 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sakura\n"
|
||||
"POT-Creation-Date: 2020-01-07 17:29+0800\n"
|
||||
"PO-Revision-Date: 2020-01-07 17:32+0800\n"
|
||||
"POT-Creation-Date: 2020-02-13 23:59+0800\n"
|
||||
"PO-Revision-Date: 2020-02-13 23:59+0800\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
||||
|
@ -183,35 +183,35 @@ msgstr ""
|
|||
msgid "This guy is so lazy ╮(╯▽╰)╭"
|
||||
msgstr "这家伙好懒╮(╯▽╰)╭"
|
||||
|
||||
#: functions.php:1327
|
||||
#: functions.php:1329
|
||||
msgid "All expand/collapse"
|
||||
msgstr "全部展开/收缩"
|
||||
|
||||
#: functions.php:1348 options.php:834
|
||||
#: functions.php:1350 options.php:834
|
||||
msgid " "
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1352
|
||||
#: functions.php:1354
|
||||
msgid " post(s)"
|
||||
msgstr " 篇文章"
|
||||
|
||||
#: functions.php:1375 functions.php:1378 inc/theme_plus.php:478
|
||||
#: functions.php:1377 functions.php:1380 inc/theme_plus.php:478
|
||||
msgid "Dashboard"
|
||||
msgstr "管理中心"
|
||||
|
||||
#: functions.php:1604
|
||||
#: functions.php:1606
|
||||
msgid "<b>ERROR</b>: This email domain (<b>@"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1709
|
||||
#: functions.php:1711
|
||||
msgid "QQ"
|
||||
msgstr ""
|
||||
|
||||
#: functions.php:1779
|
||||
#: functions.php:1781
|
||||
msgid "Sidebar"
|
||||
msgstr "侧栏"
|
||||
|
||||
#: functions.php:1891
|
||||
#: functions.php:1893
|
||||
msgid ""
|
||||
"<b> For a better experience, please do not set <a href=\"/wp-admin/options-"
|
||||
"permalink.php\"> permalink </a> as plain. To do this, you may need to "
|
||||
|
@ -1764,24 +1764,24 @@ msgstr "关于 %s 的搜索结果:"
|
|||
msgid "NOTHING"
|
||||
msgstr "啥也没有呀"
|
||||
|
||||
#: tpl/content-image.php:35 tpl/content-status.php:31 tpl/content-thumb.php:53
|
||||
#: tpl/content-image.php:35 tpl/content-status.php:31 tpl/content-thumb.php:56
|
||||
#: tpl/content.php:34
|
||||
msgid "Comment"
|
||||
msgstr "条评论"
|
||||
|
||||
#: tpl/content-image.php:35 tpl/content-status.php:31 tpl/content-thumb.php:53
|
||||
#: tpl/content-image.php:35 tpl/content-status.php:31 tpl/content-thumb.php:56
|
||||
#: tpl/content.php:34
|
||||
msgid "Comments"
|
||||
msgstr "条评论"
|
||||
|
||||
#: tpl/content-image.php:38 tpl/content-status.php:34 tpl/content-thumb.php:52
|
||||
#: tpl/content-image.php:38 tpl/content-status.php:34 tpl/content-thumb.php:55
|
||||
#: tpl/content.php:37
|
||||
msgid "Hit"
|
||||
msgid_plural "Hits"
|
||||
msgstr[0] "热度"
|
||||
|
||||
#: tpl/content-none.php:14
|
||||
msgid "There is noyhing here!"
|
||||
msgid "There is nothing here!"
|
||||
msgstr "没有找到任何东西!"
|
||||
|
||||
#: tpl/content-none.php:21
|
||||
|
|
44
style.css
44
style.css
|
@ -5,7 +5,7 @@ Theme URI: https://github.com/mashirozx/Sakura/
|
|||
Author: Mashiro, Spirit, Louie, Fuzzz
|
||||
Author URI: http://2heng.xin
|
||||
Description: A wonderful branch of theme Akina
|
||||
Version: 3.3.6
|
||||
Version: 3.3.7
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: sakura
|
||||
|
@ -1086,6 +1086,7 @@ a:hover {
|
|||
display: block
|
||||
}
|
||||
|
||||
|
||||
.m-nav {
|
||||
display: none
|
||||
}
|
||||
|
@ -1142,6 +1143,23 @@ a:hover {
|
|||
max-width: 100%
|
||||
}
|
||||
|
||||
@media(max-width:1200px) {
|
||||
.site-top .lower nav{
|
||||
right: calc(-150px - 100%);
|
||||
position: absolute;
|
||||
float: right;
|
||||
animation: searchbox .2s;
|
||||
min-width: 860px;
|
||||
z-index: -1
|
||||
}
|
||||
.site-top .lower nav.navbar {
|
||||
right: calc(-50px - 100%);
|
||||
}
|
||||
.site-top .lower nav.navbar ul {
|
||||
background: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
#show-nav {
|
||||
position: relative;
|
||||
float: right;
|
||||
|
@ -1443,6 +1461,7 @@ i.iconfont.hotpost {
|
|||
}
|
||||
|
||||
.post-list-thumb {
|
||||
will-change: transform;
|
||||
float: left;
|
||||
width: 100%;
|
||||
height: 300px;
|
||||
|
@ -1456,7 +1475,7 @@ i.iconfont.hotpost {
|
|||
|
||||
@media (max-width:860px) {
|
||||
.post-list-thumb {
|
||||
margin: 0;
|
||||
margin: 10px 0 10px;
|
||||
height: auto
|
||||
}
|
||||
}
|
||||
|
@ -1870,7 +1889,6 @@ h1.page-title.mb- {
|
|||
}
|
||||
|
||||
#moblieGoTop {
|
||||
display: none;
|
||||
position: fixed;
|
||||
bottom: 10px;
|
||||
right: 10px;
|
||||
|
@ -1884,9 +1902,9 @@ h1.page-title.mb- {
|
|||
border-radius: 10px;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 0 2px 0 rgba(0, 0, 0, .12), 0 2px 2px 0 rgba(0, 0, 0, .24);
|
||||
transition: box-shadow .2s ease
|
||||
transform: scale(0);
|
||||
transition:transform .3s
|
||||
}
|
||||
|
||||
#moblieGoTop:hover {
|
||||
background-color: #fff;
|
||||
opacity: .8
|
||||
|
@ -4260,7 +4278,7 @@ i.iconfont.js-toggle-search.iconsearch {
|
|||
|
||||
.s-search input {
|
||||
font-size: 1rem;
|
||||
background: #none;
|
||||
background: none;
|
||||
padding: 12px 24px 12px 64px;
|
||||
width: 100%;
|
||||
outline: 0;
|
||||
|
@ -4711,6 +4729,11 @@ i.iconfont.js-toggle-search.iconsearch {
|
|||
margin-top: 0;
|
||||
padding: 0
|
||||
}
|
||||
.wp-smiley {
|
||||
height: 2em !important;
|
||||
max-height: 2em !important;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
embed,
|
||||
iframe,
|
||||
|
@ -6840,9 +6863,9 @@ input[type=radio]:checked:before {
|
|||
margin-right: 22px
|
||||
}
|
||||
|
||||
@media (max-width:800px) {
|
||||
@media (max-width:860px) {
|
||||
.changeSkin-gear {
|
||||
visibility: hidden
|
||||
visibility: hidden !important
|
||||
}
|
||||
.changeSkin-gear span::before {
|
||||
content: ""
|
||||
|
@ -7567,6 +7590,11 @@ a.toc-link {
|
|||
}
|
||||
|
||||
@media (max-width:860px) {
|
||||
.wp-smiley {
|
||||
height:20px !important;
|
||||
max-height:20px !important;
|
||||
vertical-align:middle
|
||||
}
|
||||
.bili-container,
|
||||
.tieba-container {
|
||||
padding-left: 0
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
<section class="no-results not-found">
|
||||
<header class="page-header">
|
||||
<h1 class="page-title"><?php _e( 'There is noyhing here!', 'sakura' ); /*没有找到任何东西*/?></h1>
|
||||
<h1 class="page-title"><?php _e( 'There is nothing here!', 'sakura' ); /*没有找到任何东西*/?></h1>
|
||||
</header><!-- .page-header -->
|
||||
|
||||
<div class="page-content">
|
||||
|
|
|
@ -24,6 +24,9 @@ switch (akina_option('feature_align')) {
|
|||
default:
|
||||
$class = ($i%2 == 0) ? 'post-list-thumb-left' : '';
|
||||
}
|
||||
if( $i == 1 ){
|
||||
$class .= ' post-list-show';
|
||||
}
|
||||
if(has_post_thumbnail()){
|
||||
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'large');
|
||||
$post_img = $large_image_url[0];
|
||||
|
|
Loading…
Reference in New Issue