Skip to content

How to update youtube video on website

acl-mentorship edited this page Oct 22, 2022 · 3 revisions

Update _data/speakers.yml, _data/schedule.yml and _data/sessions.yml

1. First, You need to update the sessions id in _data/speakers.yml

Example:

id: 8 name: "Prof. Rada"
surname: "Mihalcea"
company: "University of Michigan"
title: "Professor"
bio: "Rada is professor at University of Michigan. Her research interests are in Natural Language Processing, Multimodal Processing,Computational Social Sciences. "
thumbnailUrl: rada.jpg
rockstar: true
social:
- {name: "site", link: "https://web.eecs.umich.edu/~mihalcea/"}

2. Update the sessions id in _data/sessions.yml

Example:

id: 001
title: "How to choose an NLP research project?"
description: "Insights from the 1st ACL Year-Round Mentorship Session"
subtype: Montly Session
speakers: [8, 9, 10] (Speakers id from _data/speakers.yml) language: en
complexity: "Intermediate"
presentation: "https://docs.google.com/document/d/1usDhvKUGjdeqMHG8EzMdembqd2M0GKtDQI6C032r5Ko/edit#heading=h.u0b64p4h2qnf" (optional)
video: "//www.youtube.com/embed/jFWF0PX4Pcs"

3. Finally Update _data/schedule.yml (This will render on schedule tab of website)

Example:

  • date: "2021-09-09"
    dateReadable: "Sep 9"
    tracks:
    • {title: "Monthly Session", color: "#90be4e"}
      timeslots:
    • {
      startTime: "11:30 am UTC",
      endTime: "12:30 am",
      sessionIds: [001]
      }