Go to file
Abhijit Kshirsagar 0c04b23f7e Tweaks and Typofixes 2025-03-02 02:36:16 +05:30
_data fix menu 2021-06-15 12:08:31 -04:00
_drafts Re-integrating reveal.js 2025-02-27 23:59:32 +05:30
_includes Tweaks and Typofixes 2025-03-02 02:36:16 +05:30
_layouts fixing typos 2021-06-15 15:18:21 -04:00
_posts tidying up 2021-06-30 14:14:09 -04:00
_sass Bio formatting fix 2025-03-02 01:36:42 +05:30
assets updating to https 2018-02-23 15:59:39 -05:00
images Tweaks and Typofixes 2025-03-02 02:36:16 +05:30
reveal.js@ade234576e finished moving reveal.js to a git submodule 2021-06-14 23:17:14 -04:00
.gitignore move accents color options to config.yml 2018-02-05 14:12:48 -05:00
.gitmodules finished moving reveal.js to a git submodule 2021-06-14 23:17:14 -04:00
404.md change site.url to site.github.url 2018-02-21 15:17:44 -05:00
Gemfile Minor Update 2025-02-26 23:46:53 +05:30
Gemfile.lock Minor Update 2025-02-26 23:46:53 +05:30
Gruntfile.js added in reveal.js and presentations post type and navigation item 2016-07-25 13:27:33 -04:00
LICENSE adding license file 2016-08-08 08:47:26 -04:00
README.md Update README 2025-03-02 01:55:24 +05:30
_config.yml Bio formatting fix 2025-03-02 01:36:42 +05:30
bio.md Update Layout for bio 2025-03-01 22:05:33 +05:30
consultancy.md Tweaks and Typofixes 2025-03-02 02:36:16 +05:30
favicon.png cleaning up code, removing inconsistent yaml frontmatter 2016-12-02 16:15:31 -05:00
index.md Tweaks and Typofixes 2025-03-02 02:36:16 +05:30
presentations.md Add correct layout names for pages 2025-03-01 22:34:18 +05:30
research.md Tweaks and Typofixes 2025-03-02 02:36:16 +05:30
teaching.md Tweaks and Typofixes 2025-03-02 02:36:16 +05:30
translation.md Add correct layout names for pages 2025-03-01 22:34:18 +05:30

README.md

About

This repository holds the source for my academic homepage, built with Jekyll, an open source static website generator. The theme / layout is adapted from a template published by NCSU Libraries which in turn is based on the Minimal Mistakes theme by Michael Rose.

Major Changes

I have naturally changed the colors, fonts and other cosmetic components to my liking, but the overall theme is largely unchanged. I have added two color definitions as well to reflect the theme colors of my institute which I have named Jamun and Marigold.

Sites with non-root hosting

When hosting in a service where the root directory for the site will be a subdirectory, e.g. in my case the root directory for my page is (https://iitdh.ac.in/~kabhijit/), the paths of all stylesheets and other relative links need to point to /~kabhijit rather than the top-level root, i.e. /. Normally, Jekyll themes use the variables baseurl or url to set these, but in this particular template the variable that needs to be used happens to be site.github.url, presumably because this would be needed most commonly when deploying via github pages, to a URL like github.io/reponame/. See the first few lines of the _config.yaml file for the syntax. If you are deploying to the root directory, this variable can be commented out.

For testing this non-root situation locally, the best way is to serve the site locally with the path right away, and save future heartaches: bundle exec jekyll clean; bundle exec jekyll serve -b /path/to/dir --livereload --watch

Deploying

Remember to copy only the contents of the _site subdirectory over to the webserver.

Upgrade Notes for June 2021 release

The following section is retained verbatim from the source repository and is needed only if you are using Reveal.js presentations

If you are running a fork of Jekyll Academic before June 2021, we made some breaking changes to upgrade the underlying Jekyll version and to address the constant github/dependabot security notices mentioned in issue #4.

We have updated Jekyll to version 4 and removed reveal.js as an included library. We still want to support reveal.js presentations, so we have taken the suggestion from issue #4 and made the reveal.js directory a git submodule. If you are running Jekyll Academic as a Github Page, this should hopefully be a minor change.

If, however, you are running Jekyll Academic locally or on a custom server, after merging this repo's commits in to your fork, you will need to go to the command line in your local or custom instance and perform the following command:

$ git submodule update --init

If you have any reveal.js presentations posted, you may need to make some updates for them to display properly using reveal.js version 4. See Jekyll's documentation for details.

Keeping reveal.js up to date

Moving forward, if you'd like to update reveal.js you will need to run the following commands:

$ git submodule update --remote