For more about how to use Jekyll, check out this tutorial.
Assuming you have Ruby v2 (Ruby+Devkit on Windows) and Bundler installed on your system, first fork the theme to github.com:<your-username>/<your-repo-name>
and do the following:
$ git clone git@github.com:<your-username>/<your-repo-name>.git
$ cd <your-repo-name>
$ bundle install
- Launch the site by running this command, which will host the website on http://localhost:4000/. Run this command after every
_config.yml
update.
bundle exec jekyll serve --watch
- Go to
_config.yml
and update the properties:
- Your first name in
first_name
- Your last name in
last_name
- Your personnel number in
ku_leuven_personnel_number
to link up your publications (number AFTER the u) - Your social media profiles that you would like to link
show_news
tofalse
if you don't want to post news message on your website.
-
Go to
_pages/about.md
and fill in your own biography to display. -
Update
assets/img/prof_pic.jpg
to a picture of yourself (file name updatable in_pages/about.md
) -
Add your teaching activities (teaching assistant, thesis students, seminars) to the csv files in
_data/teaching/
. -
Create your projects by copying and editing the content of the
_projects folder
-
If you prefer a different theme color, go to
_sass/_variables.scss
and change$theme-color: $blue;
to any color defined above this line.
For more advanced info, see the original al-folio template.
By default, your publications will be retrieved from Lirias. If you want more control over your publication page, you can use the Jekyll-Scholar plugin.
Advantages of Jekyll-Scholar:
- Use bibtex files to import your publications
- Control which publications you show and how you group and order them
- Add extra fields to your bibtex entries to include links to paper arxiv page, pdfs, supplementary materials, code, slides, poster, videos, and anything else if you want to.
- Cite your and other's work anywhere in your website, simply using {% cite %}
- Go to
_config.yml
and update the properties:
- Set
use_scholar
totrue
- Your last name in
scholar: last_name
-
Add your bibtex file to
_bibliography/references.bib
. Now the basic publications page works! -
You can now additionally add the following fields to your publications in BibTeX:
-
abstract
: creates a button[Abstract]
for showing the paper's abstract -
arxiv
: links to the arXiv ID of your paper. -
video
: url of the video (e.g. talk recording) -
You can add attachments to your bibtex entries by storing them in
assets/pdf/
and linking to them in your bibtex entry. The possible attachments arepdf
,supp
,slides
,poster
. Link to them by adding the filenames to the corresponding bibtex field.
-
-
Fill out information about your co-authors in
_data/coauthors.yml
to automatically link their namses to their personal websites. -
More documentation: Jekyll-Scholar documentation for learning how to sort, group and filter your publications, how to cite papers, and how to use multiple bib files (e.g. to add an extra bib file with other papers that you like to cite).
After you are done, commit your final changes. Now, you can deploy your website to GitHub Pages by running the deploy script:
$ ./bin/deploy [--user]
By default, the script uses the master
branch for the source code and deploys the webpage to gh-pages
.
The optional flag --user
tells it to deploy to master
and use source
for the source code instead.
Using master
for deployment is a convention for user and organization pages.
The theme is available as open source under the terms of the MIT License.