nitdgpos.github.io
1.0.0
由❤️通過github頁面製成
先決條件:
$ gem install jekyll bundler
請按照在本地瀏覽器上進行測試的步驟。
$ git clone https://github.com/NIT-dgp/nit-dgp.github.io
運行$ bundle install
以安裝依賴項。 (抓住一個☕和?,因為需要一段時間。)
$ bundle exec jekyll serve
用於運行服務器。你們都設定了。
導航到http://localhost:4000/
要查看網站。
在/projects
目錄中創建一個新的Markdown文件,然後向其添加適當的FrontMatter 。
layout
:要使用的佈局,應該始終是project
。title
:項目的標題。permalink
:項目的絕對URL。description
:明確描述該項目的目的。logo
(可選):與項目徽標的鏈接(URI)(如果有)。gallery
(可選):由圖像對象組成的yaml
中的集合,帶有屬性title
和url
,分別描述了圖像的名稱和鏈接。文件名應該符合FrontMatter的標題和永久鏈接
例如:
---
layout: project
title: ExampleProject
permalink: /projects/ExampleProject
description: An example frontmatter for ExampleProject.
logo: https://example.com/cat-dog-image.png
gallery:
- title: "Fish"
url: "https://example.com/fish.png"
- title: "Cat"
url: "https://example.com/cat.png"
---