Akina For Typecho稍微修改
Akina For Typecho是一个很好的Typecho模板,原作者为 Fuzzz,是wp模板,后被缺乏维生素移植为Typocho模板
我用了一段时间后做了一点点自己的修改,修改的不是很多,整体没有太大的变化
修改内容
- 更换了一些图片。
- 模板设置增加了焦点图片设置。
- 微博图标换成了BiliBili图标,Github图标换成了网易云音乐图标。
- 删除了首页的V字样式。
- 添加了备份模板数据功能。
模板下载
下载链接:蓝奏网盘
原作者博客:没有找到。。。
移植作者博客:纸盒博客
笔记
首页文章icon图调用
焦点图片设置
$featureimg1 = new Typecho_Widget_Helper_Form_Element_Text('featureimg1', NULL,'/usr/themes/Akina/images/feature/feature1.jpg', _t('聚焦图片1'), _t('请规范填写,需https://,http://或者//</br>默认图:/usr/themes/Akina/images/headerbg.jpg'));
$form->addInput($featureimg1);
$feature1 = new Typecho_Widget_Helper_Form_Element_Text('feature1', NULL,NULL, _t('聚焦内容1'), _t('请规范填写,需https://,http://或者//'));
$form->addInput($feature1);
$featureimg2 = new Typecho_Widget_Helper_Form_Element_Text('featureimg2', NULL,'/usr/themes/Akina/images/feature/feature2.jpg', _t('聚焦图片2'), _t('请规范填写,需https://,http://或者//</br>默认图:/usr/themes/Akina/images/headerbg.jpg'));
$form->addInput($featureimg2);
$feature2 = new Typecho_Widget_Helper_Form_Element_Text('feature2', NULL,NULL, _t('聚焦内容2'), _t('请规范填写,需https://,http://或者//'));
$form->addInput($feature2);
$featureimg3 = new Typecho_Widget_Helper_Form_Element_Text('featureimg3', NULL,'/usr/themes/Akina/images/feature/feature3.jpg', _t('聚焦图片3'), _t('请规范填写,需https://,http://或者//</br>默认图:/usr/themes/Akina/images/headerbg.jpg'));
$form->addInput($featureimg3);
$feature3 = new Typecho_Widget_Helper_Form_Element_Text('feature3', NULL,NULL, _t('聚焦内容3'), _t('请规范填写,需https://,http://或者//'));
$form->addInput($feature3);
Comments | NOTHING