Typecho Backend Template MDUI Style - AdminMD#
Typecho Backend Template MDUI Style - Admin Current Version: 1.8.2 Alpha
Preface#
Noticing that there was no Typecho backend template based on MDUI available online, I naturally wanted to create one. From the beginning, I intended to share it for free, as the MDUI style is quite rare, and I wanted to share it with everyone. Although this blog is built on WordPress, it is certainly not as lightweight as Typecho, and since there are many users, I proceeded with the creation. After several iterations, AdminMD has finally completed its pluginization! Congratulations, it has improved compatibility with other plugins and themes.
Framework Used#
Written using Bootstrap and Material Design design concepts
Future Update Plans#
[ ] Complete overhaul, rewrite the entire backend layout
[ ] Apply Material Design design concepts to every page in the backend
Issues to Note#
Note
Issue 1 - The default Gravatar avatar service used by Typecho has been blocked by GWF, which can cause the backend to load very slowly when using this theme.
Note
Issue 2 - If the menu is not functioning, please copy and paste the /AdminMD/var/Widget/Menu.php file from the plugin to the /wwwroot/var/Widget directory and overwrite it.
Note
Issue 3 - Some use JSD CDN for acceleration, which has been blocked by GWF since around 22 years ago, so using this plugin for direct connection within the wall can lead to missing static resources, slow loading, and other issues.
Solution to Issue - 1
Modify the Typecho program source code
File to modify: Website root directory /var/Typecho/Common.php line 937
Before modification:
$url = $isSecure ? 'https://secure.gravatar.com' : 'http://www.gravatar.com';
After modification:
$url = $isSecure ? 'https://sdn.geekzu.org' : 'http://www.gravatar.com';
Where https://sdn.geekzu.org can be replaced with another Gravatar domestic proxy address.
Theme Preview#
::: gallery
:::
Download Theme#
Github
Gitee
https://gitee.com/Magnetokuwan/AdminMD
This article is synchronized and updated to xLog by Mix Space The original link is https://fmcf.cc/posts/technology/Typecho_Admin_Template_MDUI_Style