├── .gitignore
└── .gitignore
├── README.md
├── index.html
└── resources
├── method_diagram.png
├── paper.png
├── style.css
└── teaser.png
/.gitignore/.gitignore:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Responsive Webpage Template
2 |
3 | This project webpage template is mobile responsive! Resizing the webpage will automatically
4 | shift elements around to fit the screen. Try a live version
5 | [here](https://jasonyzhang.com/webpage-template).
6 |
7 | This webpage template is a fork of
8 | [this widely used project webpage template](https://github.com/richzhang/webpage-template)
9 | by [Richard Zhang](https://richzhang.github.io). This template was originally made for
10 | [this colorful paper](http://richzhang.github.io/colorization/). The responsive version
11 | was made for [this paper](https://jasonyzhang.com/phosa/).
12 |
13 | To use this template, clone the repo:
14 | ```
15 | git clone https://github.com/jasonyzhang/webpage-template
16 | ```
17 |
18 | Copy the contents into a `gh-pages` branch of a GitHub repo. That will automatically
19 | make a webpage under address [GITHUB_USERNAME.github.io/REPO_NAME](GITHUB_USERNAME.github.io/REPO_NAME).
20 |
21 | Don't forget to update the Google Analytics script!
22 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
7 |
8 |
9 | This is my paper title
10 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
30 |
31 |
32 |
33 |
34 |
76 |
77 |
78 |
79 | This template was originally made for
80 | Colorful Image Colorization. It was adapted to be mobile responsive for
81 | PHOSA. Try resizing this webpage
82 | or opening it on your mobile device. The code can be found in
83 | this repo.
84 |
85 |
107 | First Author, Second Author, Third Author, Fourth Author, and Fifth Author
108 |
109 |
@InProceedings{author20XXtitle,
110 | title = {Creative and Descriptive Paper Title},
111 | author = {Author, First and Author, Second and Author, Third and Author, Fourth and Author, Fifth},
112 | booktitle = {Conference},
113 | year = {20XX},
114 | }
140 | This template was originally made by Phillip Isola
141 | and Richard Zhang for a
142 | colorful ECCV project. It was
143 | adapted to be mobile responsive by Jason Zhang
144 | for PHOSA. The code can be found
145 | here.
146 |