Git 项目推荐 | Go 语言开发的静态网站生成器_html/css_WEB-ITnose
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)!

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

要通过 Git 下载项目到本地,请按以下步骤操作:安装 Git。导航到项目目录。使用以下命令克隆远程存储库:git clone https://github.com/username/repository-name.git

更新 git 代码的步骤:检出代码:git clone https://github.com/username/repo.git获取最新更改:git fetch合并更改:git merge origin/master推送更改(可选):git push origin master

要删除 Git 仓库,请执行以下步骤:确认要删除的仓库。本地删除仓库:使用 rm -rf 命令删除其文件夹。远程删除仓库:导航到仓库设置,找到“删除仓库”选项,确认操作。

如何更新本地 Git 代码?用 git fetch 从远程仓库拉取最新更改。用 git merge origin/<远程分支名称> 将远程变更合并到本地分支。解决因合并产生的冲突。用 git commit -m "Merge branch <远程分支名称>" 提交合并更改,应用更新。

Git Commit 是一种命令,将文件变更记录到 Git 存储库中,以保存项目当前状态的快照。使用方法如下:添加变更到暂存区域编写简洁且信息丰富的提交消息保存并退出提交消息以完成提交可选:为提交添加签名使用 git log 查看提交内容

Git 代码合并过程:拉取最新更改以避免冲突。切换到要合并的分支。发起合并,指定要合并的分支。解决合并冲突(如有)。暂存和提交合并,提供提交消息。

解决 Git 下载速度慢时可采取以下步骤:检查网络连接,尝试切换连接方式。优化 Git 配置:增加 POST 缓冲区大小(git config --global http.postBuffer 524288000)、降低低速限制(git config --global http.lowSpeedLimit 1000)。使用 Git 代理(如 git-proxy 或 git-lfs-proxy)。尝试使用不同的 Git 客户端(如 Sourcetree 或 Github Desktop)。检查防火

在开发一个电商网站时,我遇到了一个棘手的问题:如何在大量商品数据中实现高效的搜索功能?传统的数据库搜索效率低下,用户体验不佳。经过一番研究,我发现了Typesense这个搜索引擎,并通过其官方PHP客户端typesense/typesense-php解决了这个问题,大大提升了搜索性能。
