搭建github博客主页


内容

之前曾经试着搭建github博客主页,但是搭了个半成品就放弃了。
今天阅读某篇博文,读着读着又犯了跑偏的毛病,中途跑来继续尝试搭GP。
好像成功了。
hahahahaha~

其他

  • 测试
  • 测试
    1
    print("测试")

更新

  • 增加python代码,方便更新博客
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
功能:更新github博客
时间:2018年04月22日19:50:59
"""
import os


def update_blog():
os.chdir("YOUR-BLOG-PATH")
os.system("hexo g")
os.system("hexo d")


if __name__ == "__main__":
update_blog()