- An academic project page template powered by React + UIKit, w/ markdown and KaTeX support !
- Demo: ⛅default-theme
- Before you begin, ensure you have met the following requirements:
Install nodejs>=20 using node version manager
$ curl https://get.volta.sh/ | bash
# restart your shell...
$ volta install node@20.11.0
$ volta pin node@20.11.0
$ node --version
v20.11.0
$ npm --version
10.2.4
- react-snap uses Headless Chromium through puppeteer to pre-render React apps.
sudo apt install -y libgtk2.0-0 libgtk-3-0 libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb libgbm-dev fonts-ipafont
- Clone this repository
$ npm install
$ npm run clean
$ npm run build
$ npm run serve
$ npm run serve
- You can change styles without writing css. Modify UIKit variables at
src/scss/theme.scss
- You can extend
*.jsx
files using these assets or custom React Components.- UIKit Components https://getuikit.com/docs/introduction
- React-Icons https://react-icons.github.io/react-icons/
template.yaml # template arguments
src/
├── components # React components loaded in index.jsx
│ ├── authors.jsx
│ ├── citation.jsx
│ ├── footer.jsx
│ ├── header.jsx
│ ├── method.jsx
│ ├── abstract.jsx
│ ├── body.jsx
│ └── video.jsx
├── html
│ └── index.html
├── media # media files to be relocated to assets/ by file-loader
│ ├── placeholder.png
│ ├── demo.mp4
│ └── teaser.png
├── js
│ └── styles.js # embed styles to js
├── pages
│ └── index.jsx # template root
└── scss # color theme zoo
└── theme.scss
- fillin values at
template.yaml
- fillin
null
for N/A contents (e.g.method: null
)
theme: default # default || dark
organization: Pixel Genius Labs
twitter: '@denkivvakame'
title: 'Academic Project Page Template: Do Whatever the Hack You Want with This Template'
resources:
paper: https://openreview.net/
arxiv: https://arxiv.org
code: https://github.com/denkiwakame/academic-project-template
video: https://www.youtube.com/embed/onbnb_D1wC8?si=xJczUv716Lt5aO4l&start=1150
huggingface: https://huggingface.co/
description: academic projectpage template that supports markdown and KaTeX
image: https://denkiwakame.github.io/academic-project-template/assets/teaser.png
url: https://denkiwakame.github.io/academic-project-template
speakerdeck: # speakerdeck slide ID
authors:
- name: Wakame Denki*
affiliation: [1, 2]
url: http://denkiwakame.github.io/
position: intern
- name: Jane Doe
affiliation: [1]
position: Researcher
url: https://thispersondoesnotexist.com/
- name: John Smith
affiliation: [1]
position: Researcher
url: https://thispersondoesnotexist.com/
affiliations:
- Pixel Genius Labs
- NeuroNauts Academy
meta:
- '*work done while she was interning at Pixel Genius Lab.'
bibtex: >
@article{doe2024superai,
author = {Jane Doe and John Smith},
title = {Unleashing the Power of Super AI: Transforming the Future of Technology},
journal = {Journal of Superintelligent Systems},
year = {2024},
volume = {99},
number = {1},
pages = {1-42},
month = {January},
keywords = {Super AI, Machine Learning, Artificial Intelligence, Technological Innovation},
doi = {10.9999/jsis.2024.001},
url = {https://www.example.com/superai-article},
note = {This paper sets the benchmark for future AI research and applications.}
}
teaser: teaser.png
abstract: |
This is a versatile template designed to satisfy your research project page needs, all while harnessing the power of **UIKit** and **React**. Built on the foundations of simplicity and flexibility, this template allows you to focus on expressing your ideas without the hassle of directly handling CSS—thanks to customizable SASS variables.
With markdown as your canvas and $\KaTeX$ for precise equations, crafting clear and engaging project page becomes effortless. Whether you're unraveling complex theories or presenting your findings, this template aims to support your scholarly endeavors with grace and ease.
*Need to edit HTML directly?* Fear not! In addition to markdown, you can also directly write HTML with ease. Feel empowered to craft your content exactly as you envision it, whether through markdown's simplicity or the precision of HTML.
body:
...
- Navigate to
https://github.com/{your-github-repo-path}/settings/pages
- Select
GitHub Actions
at Build and Deployment > Source $ git remote add origin {your-github-repo-path}
$ git push origin main
- See also: GitHub Documentation and actions/deploy-pages