nitdgpos.github.io
1.0.0
Fabriqué avec ❤️ via des pages github
Prérequis:
$ gem install jekyll bundler
Suivez les étapes pour le tester sur votre navigateur local.
$ git clone https://github.com/NIT-dgp/nit-dgp.github.io
Run $ bundle install
to install the dependencies. (Prenez un ☕ et?, Parce que cela prend un certain temps.)
$ bundle exec jekyll serve
to run the server. Vous êtes prêt.
Navigate to http://localhost:4000/
to view the site.
Create a new markdown file in /projects
directory and add the appropriate frontmatter to it.
layout
: The layout to be used, it should always be project
.title
: The title of the project.permalink
: The absolute URL for the project.description
: A clear description of what the project is aimed to do.logo
(optional): A link(URI) to the project's logo, if any.gallery
(optional): A collection in yaml
consisting of image objects, with the attributes title
and url
, describing the name and link to the image respectively.Le nom du fichier doit correspondre au titre et au permalien de Frontmatter
par exemple:
---
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"
---