jekyll starter blog
1.0.0
静态生成的网站专为想要撰写托管在静态托管中的博客文章的开发人员而设计(例如:Github Pages)。
演示网站:https://sutanlab.js.org/jekyll-starter-blog
npm install
以安装所有 npm 和捆绑程序依赖项_posts
中的示例帖子,查看分配类别和标签的示例去编辑_config.yml
# Site settings
name : Sutanlab Blog
title : Gading Nst. - Coder
description : A blog and journal about Gading Nst, Junior Developer
baseurl : " /jekyll-starter-blog " # the subpath for your site default is ""
url : " https://sutanlab.js.org " # the base hostname & protocol in your domain (e.g: https://sutanlab.github.io)
# Author Setting
username : Gading Nst.
user_description : Learner, Coder & Coffee Maniac
user_title : Welcome to My Blog Site
avatar_url : /jekyll-starter-blog/assets/img/sutan.jpeg
email : [email protected]
github_username : sutanlab
disqus_username : sutanlab
facebook_username : sgnzst
instagram_username : sutan_gnst
twitter_username : sutan_gnst
medium_username : sutan.gnst
...
去编辑src/sass
文件夹中的_variables.scss
// theme color
$main : #2c3e50 ;
$sidemenu : #242f3a ;
$hover : darken ( $main , 50 % );
$sec : #FFFFFF ;
$lightGray : #F2F2F2 ;
$texts : #333333 ;
$colorcode : #3085F4 ;
$loader-color : #FFFFFF ;
/* *
* adjust with your disqus theme
* if your disqus theme is dark, the color should be darken.
* if your disqus theme is light, the color should be lighten
*/
$comment-theme : #304165 ;
// responsive cut
$cut : 37.5 rem ;
post.sh
命令创建新帖子您只需按照命令./post -c Post Title
即可创建新帖子。新帖子将以.md
格式在_posts
中创建。当您创建新帖子时,您需要在 front-matter 中填写帖子信息,如下示例:
---
layout : post
title : Post Title
date : 2019-05-02 16:32:44
image : /assets/img/blog/post-image.png
description : First steps to use this template
tags :
- jekyll
- template
categories :
- I love Jekyll
twitter_text : How to install and use this template
keywords : jekyll, template, my post
---
对于其他./post.sh
命令:
./post -h
输出指令./post -c $TITLE
创建帖子./post -d $TITLE
创建草稿帖子./post -p $TITLE
将草稿发布/升级为帖子请记住在部署站点之前运行npm run build
来编译 sass、js 和构建站点文件
npm run deploy
用于部署到 github 页面上的其他分支
或者您可以使用./deploy.sh
进行自动化部署
运行npm start
或bundle exec jekyll server --host=$IP_ADDR --port=$PORT
版权所有 © 2019 Gading Gading Fadhillah Nasution