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"
---