诺惶的网站搭载于WordPress、Typecho、emlog等无代码建站系统,大部分功能均通过插件实现。
在此将使用的主题和插件全部公开,供各路WordPress等网页制作爱好者进行参考。谢谢所有作者,跪谢的那种。
PS1:没有广告。()
PS2:不保证所有作者的主页均能访问。请以实际情况为准。
一、chbnuohuang.com
chbnuohuang.com:
搭载于WordPress。
主题:Blockskit Base,作者:BlockskitDev。
插件:
- Advanced Import,作者:AddonsPress。
- Blockskit,作者:blockskitdev。
- Conditionally display featured image on singular pages and posts,作者:Cyrill Bolliger。
- Fancy Admin UI,作者:Bob Orchard。
- Loginfy,作者:Jewel Theme。
- Remove XMLRPC Pingback Ping,作者:WP Security Ninja。
- WPS Hide Login,作者:WPServeur, NicolasKulka, wpformation。
- Hello Dolly,作者:Matt Mullenweg。
6thdimension.chbnuohuang.com:
搭载于WordPress。
主题:FotaWP,作者:CozyThemes。
插件:
- Basic User Avatars,作者:Contributors。
- Comment Link Remove,作者:QuantumCloud。
- Default featured image,作者:Jan Willem Oostendorp。
- Loginfy,作者:Jewel Theme。
- Remove XMLRPC Pingback Ping,作者:WP Security Ninja。
- Solid Security Basic,作者:SolidWP。
- WordPress 导入工具,作者:wordpressdotorg。
- WP Adminify,作者:Jewel Theme。
- WPFront Scroll Top,作者:WPFront Team。
- WPS Hide Login,作者:WPServeur, NicolasKulka, wpformation。
- Smart Slider 3,作者:Nextend。
- 经典编辑器,作者:WordPress 贡献者。
wiki.chbnuohuang.com:
搭载于wiki.js。
使用了来自作者AurLemon的css样式。项目地址:https://github.com/AurLemon/wikijs-citizen-styles。
n.chbnuohuang.com:
搭载于WordPress。
主题:WebStack,作者:iowen。
插件:
- 2048,作者:Envigeek Web Services。
- Chess Move,作者:Jaco Thiart。
- Comment Link Remove,作者:QuantumCloud。
- Default featured image,作者:Jan Willem Oostendorp。
- Dinosaur Game,作者:Chris David Miles。
- Remove XMLRPC Pingback Ping,作者:WP Security Ninja。
- Solid Security Basic,作者:SolidWP。
- WoPo Minesweeper,作者:WoPo Web。
- WoPo Solitaire – Web Based game online,作者:WoPo Web。
- WordPress自定义鼠标样式插件,作者:宁子。
- WPS Hide Login,作者:WPServeur, NicolasKulka, wpformation。
- 健康检查和故障排除,作者:WordPress.org社区。
flarum.chbnuohuang.com:
搭载于flarum。
使用简体中文语言包。官方发布地址及说明:https://discuss.flarum.org/d/22690-simplified-chinese-language-pack
composer require flarum-lang/chinese-simplified
php flarum cache:clear
插件:
- Flamoji,作者:Hasan Özbey。
composer require the-turk/flarum-flamoji
composer require fof/drafts:"*"
composer require fof/links
composer require fof/nightmode:"*"
composer require fof/upload:"*"
composer require fof/user-bio:"*"
- Neon Chat,作者:Juan、Guillem Pascual 与 Xelson。
composer require xelson/flarum-ext-chat
composer require sycho/flarum-profile-cover:*
cloud.chbnuohuang.com:
搭载于cloudreve。
winter.library.chbnuohuang.com:
⭐使用Java编写。作者:季夏惊蛰。
Html前端:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CDK</title>
<!-- 引入 Layui 的 CSS 文件 -->
<link rel="stylesheet" href="/layui/css/layui.css">
<!-- 引入 jQuery 库 -->
<script src="/js/jquery-3.7.1.js"></script>
<!-- 引入 Layui 的 JS 文件 -->
<script src="/layui/layui.js"></script>
</head>
<body>
<div class="layui-container" style="margin-top: 30px;">
<div class="layui-row layui-col-space15">
<div class="layui-col-md6 layui-col-md-offset3">
<form id="cdkForm" class="layui-form">
<div class="layui-form-item">
<label class="layui-form-label">激活码</label>
<div class="layui-input-block">
<!-- 修复点1:保留name属性用于数据提交 -->
<input type="text" id="activationCode" name="activationCode"
lay-verify="required" placeholder="请输入激活码"
class="layui-input">
</div>
</div>
<div class="layui-form-item">
<div class="layui-input-block">
<button class="layui-btn" lay-submit lay-filter="cdkSubmit">提交</button>
</div>
</div>
</form>
<!-- 修复点2:初始化折叠面板展开状态 -->
<div id="resultDisplay" class="layui-collapse" lay-accordion>
<div class="layui-colla-item">
<h2 class="layui-colla-title">查询结果</h2>
<div class="layui-colla-content layui-show">等待查询中...</div>
</div>
</div>
</div>
</div>
</div>
<script>
layui.use(['form', 'layer'], function(){
var form = layui.form;
var layer = layui.layer;
// 监听表单提交事件
form.on('submit(cdkSubmit)', function(data){
// 修复点3:获取正确的激活码数据
var activationCode = data.field.activationCode;
$.ajax({
url: '/api/cdk/inquire',
method: 'POST',
data: { activationCode: activationCode },
dataType: 'json',
success: function(response) {
// 修复点4:动态更新折叠面板内容
var resultContent = $('#resultDisplay .layui-colla-content');
if(response.flag === 'success'){
resultContent.html('✅ 查询成功:' + response.data);
}else{
resultContent.html('❌ 查询失败:' + response.data);
}
// 修复点5:强制重新渲染折叠面板 [3]()
layui.form.render('collapse');
},
error: function(error) {
$('#resultDisplay .layui-colla-content').html('⚠️ 请求异常,请检查网络');
console.error(' 请求出错:', error);
}
});
return false;
});
});
</script>
</body>
</html>
image.chbnuohuang.com:
搭载于EasyImage。
二、chbnuohuang.top
chbnuohuang.top:
搭载于WordPress。
主题:Assembler,作者:Automattic。
插件:
- AudioIgniter,作者:The CSSIgniter Team。
- Christmasify! By Cyber Fox,作者:Cyber Fox。
- SeedProd,作者:SeedProd。
- Conditionally display featured image on singular pages and posts,作者:Cyrill Bolliger。
- Default featured image,作者:Jan Willem Oostendorp。
- Loginfy,作者:Jewel Theme。
- PopupPress,作者:Max A. López。
- Random Look,作者:沈唁。
- Slate Admin Theme,作者:Ryan Sommers。
- Ultimate floating widgets,作者:Aakash Chakravarthy。
- WordPress 导入工具,作者:wordpressdotorg。
- WordPress自定义鼠标样式插件,作者:宁子。
- WP Dark Mode,作者:WPPOOL。
- WPFront Scroll Top,作者:WPFront Team。
- WPS Hide Login,作者:WPServeur, NicolasKulka, wpformation。
- 健康检查和故障排除,作者:WordPress.org社区。
- Smart Slider 3,作者:Nextend。
- 经典编辑器,作者:WordPress 贡献者。
i.chbnuohuang.top:
搭载于WordPress。
主题:Clearwork,作者:Alexander Agnarson。
插件:
三、chbnuohuang.net
chbnuohuang.net:
搭载于WordPress。
主题:FotaWP,作者:CozyThemes。
插件:
四、chbnuohuang.xin
chbnuohuang.xin:
搭载于WordPress。
主题:Storeys,作者:闪电博。
插件:
- Basic User Avatars,作者:Contributors。
- Loginfy,作者:Jewel Theme。
- Part Content Encryption,作者:MailBerry。
- WP Adminify,作者:Jewel Theme。
rrrrwrrrr.chbnuohuang.xin:
搭载于typecho。
主题:HucorePro。
五、chbnuohuang.icu
chbnuohuang.icu:
搭载于Typecho。
主题:Final。
vonnect-world.chbnuohuang.icu:
搭载于Typecho。
主题:win95。
emlog.chbnuohuang.icu:
搭载于emlog。
主题:Bubble(Typecho模板移植),作者:此即明日。
插件:
- 小贴士,作者:emlog。
- 模板设置,作者:emlog。
- 小辰Live2D看板娘,作者:小辰。
- 页面跳转loading,作者:emlog。
- 点击冒泡,作者:流浪的子弹。
- 圣诞雪花特效,作者:小辰。
dcomputer.chbnuohuang.icu:
搭载于Typecho。
主题:win10资源管理器,作者:怡和路恶霸。
六、chbnuohuang.work
chbnuohuang.work:
搭载于WordPress。
主题:二〇二五,作者:WordPress 团队。
插件:
七、lynthz.top
lynthz.top:
搭载于WordPress。
主题:二〇二五,作者:WordPress 团队。
插件:
- Basic User Avatars,作者:Contributors。
- Conditionally display featured image on singular pages and posts,作者:Cyrill Bolliger。
- Default featured image,作者:Jan Willem Oostendorp。
- Loginfy,作者:Jewel Theme。
- midi-Synth,作者:Oleg Klenitsky。
- Remove XMLRPC Pingback Ping,作者:WP Security Ninja。
- WordPress 导入工具,作者:wordpressdotorg。
- WP Adminify,作者:Jewel Theme。
- WPS Hide Login,作者:WPServeur, NicolasKulka, wpformation。
八、fhafterdinner.top
fhafterdinner.top:
搭载于WordPress。
主题:二〇二五,作者:WordPress 团队。
插件: