神明收走了人们的胆怯,少年们的爱情轰轰烈烈;灵婆带走了人们心中的执愿,少女们的爱情真真切切。
可以在这里留下专属于你个人的脚印
愿你藏于理想主义的花海,无惧世俗的羁绊。
微信打赏
支付宝打赏
博主用的什么字体呀?可以自用吗?
@袁某人 目前没电脑 可以直接扒 全在头部
一直想用PaperCSS做一个类似的,在这发现了,拖延症不好,主题真好看💖💖💖
https://gitee.com/Mejituu/Links typecho.现成的插件.不过好像有点bug。还需要再专精一些。
@小布丁~ 想做这个 但是更偏向自助友链申请的 方便一点 到最后实在没有的话 再考虑做手动的
😄博主是UI控。。赞一个。
@蜡客小生 🙈
这段代码对文章页和独立页面的做了一点优化,head文件里
<?php if ($this->is("index")): ?> <meta property="og:type" content="blog"/> <meta property="og:url" content="<?php $this->options->siteUrl(); ?>"/> <meta property="og:title" content="<?php $this->options->title(); ?>"/> <meta property="og:author" content="<?php $this->author->name(); ?>"/> <meta name="keywords" content="<?php $this->keywords(); ?>"> <meta name="description" content="<?php $this->options->description(); ?>"> <?php endif; ?> <?php if ($this->is("post") || $this->is("page") || $this->is("attachment")): ?> <meta property="og:url" content="<?php $this->permalink(); ?>"/> <meta property="og:title" content="<?php $this->title(); ?> - <?php $this->options->title(); ?>"/> <meta property="og:author" content="<?php $this->author(); ?>"/> <meta property="og:type" content="article"/> <meta property="article:published_time" content="<?php $this->date("c"); ?>"/> <meta property="article:published_first" content="<?php $this->options->title(); ?>, <?php $this->permalink(); ?>"/> <meta name="keywords" content="<?php $k = $this->fields->keyword; if (empty($k)) { echo $this->keywords(); } else { echo $k; } ?>"> <meta name="description" content="<?php $d = $this->fields->description; if (empty($d) || !$this->is("single")) { if ($this->getDescription()) { echo $this->getDescription(); } } else { echo $d; } ?>"/> <?php endif; ?> <title><?php $this->archiveTitle( [ "category" => _t("分类 %s 下的文章"), "search" => _t("包含关键字 %s 的文章"), "tag" => _t("标签 %s 下的文章"), "author" => _t("%s 发布的文章"), ], "", " - " ); $this->options->title(); ?></title> <?php $this->header("description=&generator=&pingback=&template=&xmlrpc=&wlw=&commentReply=&keywords="); ?>
博主用的什么字体呀?可以自用吗?
@袁某人 目前没电脑 可以直接扒 全在头部
一直想用PaperCSS做一个类似的,在这发现了,拖延症不好,主题真好看💖💖💖
https://gitee.com/Mejituu/Links typecho.现成的插件.不过好像有点bug。还需要再专精一些。
@小布丁~ 想做这个 但是更偏向自助友链申请的 方便一点 到最后实在没有的话 再考虑做手动的
😄博主是UI控。。赞一个。
@蜡客小生 🙈
这段代码对文章页和独立页面的做了一点优化,head文件里