Skip to content

FACTSlab/factslab.github.io

Repository files navigation

FACTS.lab website

This repository houses the FACTS.lab website. Its design is based on the jekyll template dactl, which is a fork of daktilo.

Adding a lab member

To add yourself to the website, you will need to make a pull request that does three things:

  1. Adds your information to the people hash within _data/people.yml, ensuring that the correct indentation is used. This information should include four things: name, website, description, and image (see step 3). An example can be found below:
people:
  ...
  svashishtha:
    name: Siddharth Vashishtha
    website: https://sidsvash26.github.io/
    description: Sid is a fourth-year PhD Student in Computer Science advised by Aaron White. His research work focuses on extracting event semantics from natural language text. His latest projects involve working on <a href="https://aclanthology.org/2020.findings-emnlp.363/">temporal reasoning in natural language inference systems</a> and <a href="https://aclanthology.org/P19-1280/">temporal relation extraction</a>. 
    image: siddharth-vashishtha.jpg
  ...
  1. Adds your identifier (e.g. svashishtha) to the groups hash within _data/people.yml, ensuring that the correct indentation is used. An example can be found below:
groups:
  ...
  grads: 
    name: Graduate Researchers
    members:
    - svashishtha
    - wgantt
    - han
  ...
  1. Adds a square image to assets/img/people/. You should make sure that the file name matches that found in the image field of the entry in _data/people.yml.