搜尋
首頁web前端html教學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)!


陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
HTML標籤和HTML屬性有什麼區別?HTML標籤和HTML屬性有什麼區別?May 14, 2025 am 12:01 AM

HTMLtagsdefinethestructureofawebpage,whileattributesaddfunctionalityanddetails.1)Tagslike,,andoutlinethecontent'splacement.2)Attributessuchassrc,class,andstyleenhancetagsbyspecifyingimagesources,styling,andmore,improvingfunctionalityandappearance.

HTML的未來:進化和趨勢HTML的未來:進化和趨勢May 13, 2025 am 12:01 AM

HTML的未來將朝著更加語義化、功能化和模塊化的方向發展。 1)語義化將使標籤更明確地描述內容,提升SEO和無障礙訪問。 2)功能化將引入新元素和屬性,滿足用戶需求。 3)模塊化將支持組件化開發,提高代碼復用性。

為什麼HTML屬性對Web開發很重要?為什麼HTML屬性對Web開發很重要?May 12, 2025 am 12:01 AM

htmlattributesarecrucialinwebdevelopment forcontrollingBehavior,外觀和功能

Alt屬性的目的是什麼?為什麼重要?Alt屬性的目的是什麼?為什麼重要?May 11, 2025 am 12:01 AM

alt屬性是HTML中標籤的重要部分,用於提供圖片的替代文本。 1.當圖片無法加載時,alt屬性中的文本會顯示,提升用戶體驗。 2.屏幕閱讀器使用alt屬性幫助視障用戶理解圖片內容。 3.搜索引擎索引alt屬性中的文本,提高網頁的SEO排名。

HTML,CSS和JavaScript:示例和實際應用HTML,CSS和JavaScript:示例和實際應用May 09, 2025 am 12:01 AM

HTML、CSS和JavaScript在網頁開發中的作用分別是:1.HTML用於構建網頁結構;2.CSS用於美化網頁外觀;3.JavaScript用於實現動態交互。通過標籤、樣式和腳本,這三者共同構築了現代網頁的核心功能。

如何在標籤上設置lang屬性?為什麼這很重要?如何在標籤上設置lang屬性?為什麼這很重要?May 08, 2025 am 12:03 AM

設置標籤的lang屬性是優化網頁可訪問性和SEO的關鍵步驟。 1)在標籤中設置lang屬性,如。 2)在多語言內容中,為不同語言部分設置lang屬性,如。 3)使用符合ISO639-1標準的語言代碼,如"en"、"fr"、"zh"等。正確設置lang屬性可以提高網頁的可訪問性和搜索引擎排名。

HTML屬性的目的是什麼?HTML屬性的目的是什麼?May 07, 2025 am 12:01 AM

htmlattributeseresene forenhancingwebelements'functionalityandAppearance.TheyAdDinformationTodeFineBehavior,外觀和互動,使網站互動,響應式,visalalyAppealing.AttributesLikutesLikeSlikEslikesrc,href,href,href,類,類型,類型,和dissabledtransfransformformformformformformformformformformformformformformforment

您如何在HTML中創建列表?您如何在HTML中創建列表?May 06, 2025 am 12:01 AM

toCreateAlistInHtml,useforforunordedlistsandfororderedlists:1)forunorderedlists,wrapitemsinanduseforeachItem,RenderingeringAsabulletedList.2)fororderedlists,useandfornumberedlists,useandfornumberedlists,casundfornumberedlists,casundfornthetthetthetthetthetthetthetttributefordforderfordforderforderentnumberingsnumberingsnumberingStys。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

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

AI Clothes Remover

AI Clothes Remover

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

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

VSCode Windows 64位元 下載

VSCode Windows 64位元 下載

微軟推出的免費、功能強大的一款IDE編輯器

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)