Skip to content

Latest commit

 

History

History
116 lines (88 loc) · 3.64 KB

README.md

File metadata and controls

116 lines (88 loc) · 3.64 KB

Visual Computing Lab Official Website

Add a new member

Adding new member is as simple as adding a new entry in yml file

Add Current member

  • Add details of members _data/lab_members.yml.
  • Save pic in images/teampic.
  • Image size must be less than 100 KB
  • Image should be square of size (200 x 200). First crop your image to square shape then resize it to (200 x 200) size using https://www.iloveimg.com/resize-image
  • If photo is not available then use researcher.png placeholder image (already there).
  • url, linkedin and google_scholar are optional This will help in maintaining loading speed and proper alignment of website images

Sample example for adding a current member.

- name: Your Name
  photo: Your Pic
  position: You Position (Must be PhD/M. Tech/Project Assistant/Intern)
  year: 201X-Active
  url: https://sites.google.com/view/your_id
  linkedin: https://www.linkedin.com/in/your_id/
  google_scholar: https://scholar.google.com/citations?hl=en&user=your_id

Add Alumni

  • Add detauks in _data/lab_alumni.yml
  • The position field accepts only values M. Tech. (CDS), Ph. D., M. Tech. (research), Project Assistant, Intern. These are case case sensitive
  • On website it will automatically show Dissertation/Thesis based on qualification.

Sample example for adding an alumnus.

- name: Aditya Kumar Pal 
  position: M. Tech. (CDS)
  year: 2018-21
  url: https://www.linkedin.com/in/adityakumarpal17059
  affiliation: Walmart Labs
  worked_on: Anomaly Detection and Localization Using Image Inpainting

Add a new publication

Generate Pull request to add your publications. Publication can be added in _data/publications.yml in follwing format. project_page, paper_link, code_link, bibtex are optional fields

- paper: Your Paper Name
  author: List of authors 
  pub: Place where work is published
  type: Book Chapters / journal / conference (choose anyone)
  project_page: https://sites.google.com/project_link
  paper_link: https://sites.google.com/paper_link
  code_link: https://github.com/code_link
  bibtex: https://github.com/username/bibtex.tex

Add news

News are stored as .yml file under _data/news.yml. An entry looks like the following:

- date: 15 August 2021
  title: "Something great happened!"

Update Slider

You can update image by going to _layouts/homelay.html . The slider image should be of size (640 x 360) px (16:9 ratio). Compress any image before adding to website in order to maintain loading speed.

<div class="item">
  <img src="{{ site.url }}{{ site.baseurl }}/images/slider/new_image.jpg" alt="Slide 3" />
</div>

Setup

For Mac/Linux

brew install ruby
gem install bundler jekyll

For windows Install

Clone this repository, then install the dependencies:

bundle install

Run

Run the local webserver with:

bundle exec jekyll serve

Template Info

We use Bootstrap for designing the website. Feel free to modify either the _pages or the _layouts components.

This website is built with Jekyll. It is derived from the great template provided by the Allan Lab, at Leiden University.

Template modified by Rohit Lal and Himanshu Patil