https://billhowelab.github.io/
yarn start
and open http://localhost:8000/
in your browser
- In
components/paper-list.js
, define venue and author constants, add a new<Paper/>
under one of the categories (Conference Papers
,Workshop Papers
etc.) in reverse chronological order, and fill out the optional properties:const VENUE = `IEEE Conference`; const AUTHOR = 'Bill Howe'; <Paper title = '' authors = {[AUTHOR]} venue = {VENUE} date = '' pdf = 'paper/[add_your_own].pdf' acceptanceRate = {} awardType = {} video = {``} slides = {``} />
- Add the paper PDF to
/paper
the 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-pages
branch, or commit to your own branch and send a pull request to merge into thegh-pages
branch.