Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment
测试
...
2024-03-14 文章头文件解析
2024-03-14...
2024-03-11 记录两天半成都之行之感之思
2024-03-11...
2024-03-10 分享几张好看的壁纸
分享一些好看的壁纸给大家,喜欢的记得收藏哦!
google搜索检索资料必备的搜索语法
google检索必备的搜索语法我们在用google搜索时候,可运用搜索语法提升效率,下面简单介绍一下几个常用的点。 具体用法:1限定关键词:用双引号""包裹 (1) 限定标题:intitle1“intitle:登录” (2) 限定内容:intext1“intext:2023年中国经济报告” (3) 限定网址:inurl1特斯拉 site:www.baidu.com 1“inurl:www.baidu.com” (4) 限定网站:site1海贼王 site:www.baidu.com 1“Site:family.chinaok.com” (5) 限定图片大小:imagesize1海贼王 imagesize:1920*1080 (6) 限定文件类型:filetype PS:掌握以上知识,事半功倍!
Hexo创建sitemap站点地图向搜索引擎提交
Hexo创建sitemap站点地图向搜索引擎提交站点地图是一种xml文件,可以通过该文件列出网站上的网页,从而将网站内容的组织架构告知Google和其他搜索引擎。Sitemap 可方便管理员通知搜索引擎他们网站上有哪些可供抓取的网页。搜索引擎网页抓取工具会读取此文件,以便更加智能地抓取您的网站。 向搜索引擎提交自己hexo博客的sitemap,有助于让别人更好地通过搜索引擎搜索到自己的博客。 一、生成Hexo博客的sitemap文件Hexo有提供2个插件,用来自动生成sitemap文件。用以下命令安装: 12npm install hexo-generator-sitemap --savenpm install hexo-generator-baidu-sitemap --save 安装完后,每当执行 hexo generate命令后,就会在Hexo下的public目录下生成两个文件。 sitemap.xml 这个用来提交给Google、Bing等搜索引擎 baidusitemap.xml 这个是百度专用的 运行 hexo...
记录一下如何同时将hexo部署到github和个人ubuntu服务器
记录一下如何同时将hexo部署到github和个人ubuntu服务器1、申请秘钥对的时候需要指定位置和名称1ssh-keygen -t rsa -C "eystasy@gmail.com" -f C:\Users\Colar\github\my_ssh_key 说明: -t 表示选择加密方式。 -c 表示用户,通常填写邮箱表示 -f 指定秘钥保存路径,最后的“my_ssh_key”表示秘钥名称 2、用notepad等软件打开.pub的公钥,复制后粘贴到github的SSH key的位置。具体见图。 3.配置config文件1路径:C:\Users\Colar\.ssh config配置12345Host github.com HostName github.com User git IdentityFile C:\\Users\\Colar/github/my_ssh_key IdentitiesOnly...