这是一个极轻量级的,基于git issue的个人博客模板,非常适合于想在GitHub pages上搭建个人博客的人。
json
格式信息,方便用户进行开发客户端等操作。具体接口使用见说明底部。博客本身没有发表文章的接口,而是在GitHub的issue页面直接new issue。
评论功能参考了Gitment,借用了Gitment的css样式,重写了JavaScript逻辑。评论功能基于GitHub的issue,支持Markdown语法,支持@功能,支持点赞功能。
可以在GitHub上为每个文章指定标签label。
404页面模仿了GitHub自己的404页面,可点击这里查看404页面示例。
最快捷的方法就是直接Fork这个repo,修改仓库名为username.github.io
格式,然后稍微配置一下就能直接使用了。
第二种办法就是clone仓库
git clone "https:/github.com/imuncle/gitblog"
点击这里申请。
注意申请时的callback URL一定要填写正确。一般就写自己网站的首页就行,比如https://imuncle.github.io 。
申请完毕后会拿到对应的唯一的client_id和client_secret,这两个字符串在后面的配置中会使用到。
修改config.json:
{
"name": "your github username",
"repo": "your github reponame",
"client_id": "your client_id here",
"client_secret": "your client_secret here",
"title": "add your title",
"instruction": "add your instruction",
"server_link": "http://119.23.8.25/gh-oauth-server.php",
"filter": {
"creator": "all", //@param: "all" or a username(eg. "imuncle")
"state": "open" //@param: "open", "close", "all"
},
"menu": {
//add your menu items and URL here
//example:
//"Home" : "./",
//"RSS" : "https://rsshub.app/github/issue/imuncle/imuncle.github.io",
//"About me" : "content.html?id=41"
},
"friends": {
//add your friends link here
//example:
//imuncle : "https://imuncle.github.io"
},
"icons": {
//add your footer icons here
//you can set a jump link or display an image
//template :
//"the title of the icon" : {
// "icon_src" : "the image of the icon",
// "href" : "the link you want to jump",
// "hidden_img" : "the image you want to show",
// "width" : the width of the hidden_img, this should be a number.(unit : px)
//}
//example :
//"Github" : {
// "icon_src" : "images/github.svg",
// "href" : "https://github.com/imuncle",
// "hidden_img" : null,
// 'width" : 0
//}
}
}
将自己的个人信息填写进去。
选项 | 含义 |
---|---|
name | 填写你的GitHub用户名 |
repo | 填写你的pages对应的仓库,一般是:用户名.github.io |
client_id | 填写你申请OAuth APP时拿到的client_id |
client_secret | 填写你申请OAuth APP时拿到的client_secret |
title | 填写你的个人网站的标题 |
instruction | 填写你的个人网站的简介 |
server_link | 填写你的服务端地址,http://119.23.8.25/gh-oauth-server.php |
filter | 填写issue筛选规则,可根据creator和issue state筛选 |
menu | 填写右侧菜单中的名称和链接 |
friends | 填写你的网站的友链,若没有则不填写 |
icons | 填写网站页脚的图标信息,若没有则不填写 |
上面的server_link是服务端的地址,,因为访问用户的access_token必须通过服务端访问,详情可见这篇文章。这个服务端使用PHP编写,只负责请求用户的access_token,不会存储任何数据。详见源代码。
如果你有服务器,那么你可以使用该PHP代码自己配置服务端,将server_link写为自己的服务端地址。
网站首页有一个动态打字的效果,这里参考的是type.js项目,配置地方在index.html中。
找到如下代码(在尾部):
$("#changerificwordspanid").typed({
strings: ["good", "happy", "healthy", "tall"],
typeSpeed: 100,
startDelay: 10,
showCursor: true,
shuffle: true,
loop:true
});
可以更改strings
来更改单词。更多的配置选项请参考原项目。
图片全部都存储在images文件夹中。
图片名称 | 含义 |
---|---|
404.png | 404页面 |
avatar.jpg | 网站图标 |
fish.png | 404页面 |
github.svg | GitHub图标 |
house1.png | 404页面 |
house2.png | 404页面 |
page_backfround.jpg | 首页的背景图 |
search.svg | 右上角搜索图标 |
totop.png | 右下角“回到顶部”按钮图标 |
如果没有前端知识,建议更改图片时不要更改文件名。
API接口的实现见api.html,通过访问该文件获取信息,使用url参数指定获取的信息内容。具体的用法如下。
$.ajax({
type: 'get',
headers: {
Accept: 'application/json',
},
url: 'your domain name' + 'api.html?menu=menu',
success: function(data) {
//your code here
}
});
返回的数据格式如下:
[
{
"name": "首页",
"url": "./"
},
{
"name": "机器学习",
"url": "issue_per_label.html?label=AI"
},
{
"name": "小项目",
"url": "issue_per_label.html?label=Project"
},
{
"name": "RM比赛",
"url": "issue_per_label.html?label=RM"
},
{
"name": "ROS学习",
"url": "issue_per_label.html?label=ROS"
},
{
"name": "小工具",
"url": "issue_per_label.html?label=tools"
},
{
"name": "网页开发",
"url": "issue_per_label.html?label=web"
},
{
"name": "其他",
"url": "issue_per_label.html?label=other"
},
{
"name": "灵感想法",
"url": "https://imuncle.github.io/timeline"
},
{
"name": "关于我",
"url": "content.html?id=41"
}
]
获取文章列表分为三种模式:一种是无筛选的普通模式,一种是按标签(label)筛选的标签模式,一种是按搜索内容筛选的搜索模式。三种模式都支持分页模式。
var request_url = 'your domain name' + 'api.html?';
request_url += 'page=1'; //普通模式
request_url += 'label=RM&page=1'; //标签模式
request_url += 'q=姿态解析&page=1'; //搜索模式
$.ajax({
type: 'get',
headers: {
Accept: 'application/json',
},
url: request_url,
success: function(data) {
//your code here
}
});
注:以上代码中
page
参数均为可选。
返回的数据格式如下:
{
"page": 4,
"page_num": 8,
"article": [
{
"id": 48,
"time": "2019/4/7 23:00:49",
"title": "STM32 flash读写",
"author": "imuncle",
"content": "文章内容太多了,此处省略...",
"labels": [
{
"name": "RM"
}
]
},
{
"id": 47,
"time": "2019/4/5 01:58:44",
"title": "WS2811驱动",
"author": "imuncle",
"content": "文章内容太多了,此处省略...",
"labels": [
{
"name": "RM"
}
]
},
{
"id": 46,
"time": "2019/4/1 18:57:58",
"title": "DS18B20温度传感器数据读取",
"author": "imuncle",
"content": "文章内容太多了,此处省略...",
"labels": [
{
"name": "other"
}
]
},
{
"id": 45,
"time": "2019/4/1 18:01:15",
"title": "HAL库实现us级延时",
"author": "imuncle",
"content": "文章内容太多了,此处省略...",
"labels": [
{
"name": "other"
}
]
},
{
"id": 44,
"time": "2019/4/1 10:00:40",
"title": "MPU9250六轴算法",
"author": "imuncle",
"content": "文章内容太多了,此处省略...",
"labels": [
{
"name": "RM"
}
]
},
{
"id": 43,
"time": "2019/3/30 09:19:57",
"title": "MATLAB串口通信GUI程序",
"author": "imuncle",
"content": "文章内容太多了,此处省略...",
"labels": [
{
"name": "other"
}
]
},
{
"id": 42,
"time": "2019/3/24 12:01:25",
"title": "网站搜索功能",
"author": "imuncle",
"content": "文章内容太多了,此处省略...",
"labels": [
{
"name": "web"
}
]
},
{
"id": 40,
"time": "2019/3/19 15:19:52",
"title": "RM2018的奋斗",
"author": "imuncle",
"content": "文章内容太多了,此处省略... ",
"labels": [
{
"name": "RM"
}
]
},
{
"id": 39,
"time": "2019/3/18 18:03:35",
"title": "MPU9250姿态解析",
"author": "imuncle",
"content": "文章内容太多了,此处省略...",
"labels": [
{
"name": "RM"
}
]
},
{
"id": 38,
"time": "2019/3/10 19:03:28",
"title": "生成漂亮的代码分享图",
"author": "imuncle",
"content": "文章内容太多了,此处省略...",
"labels": [
{
"name": "tools"
}
]
}
]
}
注:默认一页显示10篇文章
这是获取文章的详细内容。注意,这里返回的是HTML格式的文章内容,而获取文章列表
拿到的是Markdown格式的文章内容。使用方法如下:
$.ajax({
type: 'get',
headers: {
Accept: 'application/json',
},
url: 'your domain name' + 'api.html?id=1',
success: function(data) {
//your code here
}
});
返回的数据格式如下:
{
"title": "博客搭建过程",
"time": "2019/2/5 16:33:06",
"content": "文章内容太多了,此处省略...",
"labels": [
{
"name": "web"
}
],
"like": 0
}
欢迎提issue,也欢迎PR~
MIT LICENSE