https://billhowelab.github.io/
yarn startand open http://localhost:8000/ in your browser
- In
components/paper-list.js, define venue and author constants, add a new<Paper/>in reverse chronological order, and fill out the optional properties:const VENUE = `IEEE Conference`; const AUTHOR = 'Bill Howe'; <Paper thumbnail = 'images/thumbnails/[your_120_by_62_pixel_thunbnail].png' title = '' authors = {[AUTHOR]} venue = {VENUE} date = '' pdf = 'paper/[add_your_own].pdf' acceptanceRate = {} awardType = {} video = {``} slides = {``} /> - Add the paper PDF to the
/paperfolder - Add your 120 * 62 pixels thumbnail image to the
/images/thumbnails/folder
- In
index.html, find<div class="subtitle">News</div>and add one<div/>for each news
- Before deploying to our lab website hosted on GitHub Pages, first run the website locally and make sure everything looks right to you and all the links are working
- Commit your changes to the
gh-pagesbranch, or commit to your own branch and send a pull request to merge into thegh-pagesbranch.