Git 项目推荐 | Go 语言开发的静态网站生成器_html/css_WEB-ITnose
About gosk
gosk is a static site generator written in Go.
Features
Markdown support
Custom theme support
Getting started
install golang first, if you don't have,see http://golang.org/doc/install(Notice:go version must >=1.2)
$ go get github.com/scottkiss/gosk
Compile gosk
$ cd $GOPATH/github.com/scottkiss/gosk/bin$ go build gosk.go
if build passing,do the next.
Create Site(Blog)
$ cd bin#run the gosk(if in windows os,will be gosk.exe) file$ ./gosk build(if in windows os : gosk build)
if there is no errors,Congratulations,a folder named public will be created in current folder,then you can host the publish folder use any web server which support serving static content.In gosk,it also provide a simple static web server for testing in local.
Use the built-in server gosk-server
$ cd $GOPATH/github.com/scottkiss/gosk/bin$ ./gosk run :80
It will run on http://localhost:8080/if don't specify the port (Notic: Don't move the gosk(gosk.exe) file,keep it under the bin folder,and don't move the root folder too,Or it won't work)
Now,Open your web browser and visit: http://localhost/ - Enjoy it.
project category
bin | - publish #published folder,include compiled .html files | - ... #assets | - index.html | - rss.xml | - ... #more html files | - root #root folder | - assets #assets folder,include javascript and css files | - pages #custom pages folder | - posts #post folder | - article1.md #metadata text file | - article2.md #metadata text file | - templates #template folder | - default #default theme template | - default-zh #default-zh theme template | - ... #more themes template | - config.yml #site global configure | - nav.yml #navbar configure | - pages.yml #custom site configure | - gosk #gosk file
more themes
gosk-theme
who use gosk
cocosk
If you are using gosk too,please tell me by email.
中文指南
特点
支持Markdown
支持自定义主题
自带默认一个主题,支持代码高亮
编译文章速度快
更多特点,谁用谁知道 _^
开始使用
$ go get github.com/scottkiss/gosk
编译 gosk
$ cd $GOPATH/github.com/scottkiss/gosk/bin$ go build gosk.go
编译通过后,进行下一步
创建 静态页面(博客)
$ cd bin#运行编译生成的gosk(如果在windows平台下,是gosk.exe) 文件$ ./gosk build(在windows平台下运行gosk build)
如果没什么出错提示,那么恭喜你,在当前目录下会创建一个叫public目录,然后你可以用任何 支持静态服务的服务器部署public目录。为了方便测试,gosk也内置了一个简陋的静态web服务器。
使用内置静态服务器
$ cd $GOPATH/github.com/scottkiss/gosk/bin$ ./gosk run :80
如果不指定后面的参数(执行 ./gosk run)默认是运行在 http://localhost:8080/(注意:不要移动gosk(gosk.exe)的位置,也不要移动root目录的位置,不然就无法成功编译或运行了。)
现在,打开您的浏览器并访问: http://localhost/
项目目录结构
bin | - publish #执行编译后生成的目录,静态站点根目录 | - ... #资源,如javascript和css | - index.html #生成的首页文件 | - rss.xml | - ... #更多html文件 | - root #根目录,存放待编译的模板文件等 | - assets #资源目录,包括javascript 和 css 文件 | - pages #自定义页面目录 | - posts #发布的文章目录 | - article1.md #markdown编写的元文本文件 | - article2.md #markdown编写的元文本文件 | - templates #模板目录 | - default #默认主题模版 | - default-zh #默认中文主题模版 | - ... #更多模版主题 | - config.yml #站点全局配置文件 | - nav.yml #站点导航栏配置文件 | - pages.yml #自定义页面配置文件 | - gosk #gosk 执行文件
更多主题
gosk内置一个default主题,更多主题请前往 gosk-theme
使用gosk的站点
酷酷时空
如果你也使用gosk,如果不介意,通过邮件告诉我哦。
License
View the LICENSEfile
以上就是Git 项目推荐 | Go 语言开发的静态网站生成器_html/css_WEB-ITnose的内容,更多相关内容请关注PHP中文网(www.php.cn)!

GitHub是一个面向开源及私有软件项目的托管平台,可以让开发者们在这里托管自己的代码,并进行版本控制。GitHub主打的是开源项目与协作,通过这个平台上的开源项目,开发者们可以查看其他开发者的项目源代码,并进行交流和学习。

在git中,“push -u”的意思是将本地的分支版本上传到远程合并,并且记录push到远程分支的默认值;当添加“-u”参数时,表示下次继续push的这个远端分支的时候推送命令就可以简写成“git push”。

在git中,pack文件可以有效的使用磁盘缓存,并且为常用命令读取最近引用的对象提供访问模式;git会将多个指定的对象打包成一个成为包文件(packfile)的二进制文件,用于节省空间和提高效率。

GitLab是一种基于Web的Git版本控制库管理软件,旨在帮助开发团队更好地协同工作,提高工作效率。当您第一次登录GitLab时,系统会提示您要更改初始密码以确保账户安全。本文将为大家介绍如何在GitLab上进行第一次登录并更改密码。

git中pull失败的解决方法:1、利用“git reset --hard”强制覆盖掉自己的本地修改;2、利用“git stash”推送一个新的储藏,拉取之后利用“git stash pop”将修改保存到暂存区;3、若依然出现问题,则将文件保存到暂存区并提交注释即可。

git分支能改名字。改名方法:1、利用git中的branch命令修改本地分支的名称,语法为“git branch -m 旧名字 新名字”;2、利用“git push origin 新名字”命令,在删除远程分支之后将改名后的本地分支推送到远程;3、利用IDEA直接操作修改分支名称即可。

本篇文章给大家带来了关于git的相关知识,其中主要跟大家聊一聊怎么让你的git记录保持整洁,感兴趣的朋友下面一起来看一下吧,希望对大家有帮助。

git删除某个分支的方法:1、利用“git branch --delete dev”命令删除本地分支;2、利用“git push origin --delete branch”命令删除远程分支;3、利用“git branch --delete --remotes”命令删除追踪分支。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

Dreamweaver CS6
視覺化網頁開發工具

記事本++7.3.1
好用且免費的程式碼編輯器

Safe Exam Browser
Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。

SublimeText3 英文版
推薦:為Win版本,支援程式碼提示!

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境