Skip to content

Commit f8164aa

Browse files
committed
HiRo Lab website
0 parents  commit f8164aa

119 files changed

Lines changed: 4230 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
name: Deploy site
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- main
8+
paths:
9+
- "assets/**"
10+
- "**.html"
11+
- "**.js"
12+
- "**.liquid"
13+
- "**/*.md"
14+
- "**.yml"
15+
- "!.github/workflows/axe.yml"
16+
- "!.github/workflows/broken-links.yml"
17+
- "!.github/workflows/deploy-docker-tag.yml"
18+
- "!.github/workflows/deploy-image.yml"
19+
- "!.github/workflows/docker-slim.yml"
20+
- "!.github/workflows/lighthouse-badger.yml"
21+
- "!.github/workflows/prettier.yml"
22+
- "!lighthouse_results/**"
23+
- "!CONTRIBUTING.md"
24+
- "!CUSTOMIZE.md"
25+
- "!FAQ.md"
26+
- "!INSTALL.md"
27+
- "!README.md"
28+
pull_request:
29+
branches:
30+
- master
31+
- main
32+
paths:
33+
- "assets/**"
34+
- "**.html"
35+
- "**.js"
36+
- "**.liquid"
37+
- "**/*.md"
38+
- "**.yml"
39+
- "!.github/workflows/axe.yml"
40+
- "!.github/workflows/broken-links.yml"
41+
- "!.github/workflows/deploy-docker-tag.yml"
42+
- "!.github/workflows/deploy-image.yml"
43+
- "!.github/workflows/docker-slim.yml"
44+
- "!.github/workflows/lighthouse-badger.yml"
45+
- "!.github/workflows/prettier.yml"
46+
- "!lighthouse_results/**"
47+
- "!CONTRIBUTING.md"
48+
- "!CUSTOMIZE.md"
49+
- "!FAQ.md"
50+
- "!INSTALL.md"
51+
- "!README.md"
52+
workflow_dispatch:
53+
54+
permissions:
55+
contents: write
56+
57+
jobs:
58+
deploy:
59+
# available images: https://github.com/actions/runner-images#available-images
60+
runs-on: ubuntu-latest
61+
steps:
62+
- name: Checkout 🛎️
63+
uses: actions/checkout@v4
64+
- name: Setup Ruby
65+
uses: ruby/setup-ruby@v1
66+
with:
67+
ruby-version: "3.2.2"
68+
bundler-cache: true
69+
- name: Update _config.yml ⚙️
70+
uses: fjogeleit/yaml-update-action@main
71+
with:
72+
commitChange: false
73+
valueFile: "_config.yml"
74+
propertyPath: "giscus.repo"
75+
value: ${{ github.repository }}
76+
- name: Install and Build 🔧
77+
run: |
78+
pip3 install --upgrade jupyter
79+
export JEKYLL_ENV=production
80+
bundle exec jekyll build --lsi
81+
- name: Deploy 🚀
82+
if: github.event_name != 'pull_request'
83+
uses: JamesIves/github-pages-deploy-action@v4
84+
with:
85+
folder: _site

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
_site
2+
.bundle
3+
.sass-cache
4+
.jekyll-cache
5+
.jekyll-metadata
6+
.DS_store
7+
.ruby-version
8+
.tweet-cache
9+
Gemfile.lock
10+
node_modules/
11+
vendor

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hiro.cps.iisc.ac.in

Gemfile

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
source 'https://rubygems.org'
2+
# Ruby 3.5+/4.0 moved ostruct out of the default gems; jekyll-twitter-plugin
3+
# requires it. Declaring it keeps the build working on newer Ruby (harmless on
4+
# the deploy's Ruby 3.2.2, which still bundles it).
5+
gem 'ostruct'
6+
group :jekyll_plugins do
7+
gem 'classifier-reborn'
8+
gem "jekyll", "~> 4.2.2"
9+
gem "jekyll-sass-converter", "~> 2.2"
10+
gem 'jekyll-archives'
11+
gem 'jekyll-email-protect'
12+
gem 'jekyll-feed'
13+
gem 'jekyll-get-json'
14+
gem 'jekyll-imagemagick'
15+
gem 'jekyll-jupyter-notebook'
16+
gem 'jekyll-link-attributes'
17+
gem 'jekyll-minifier'
18+
gem 'jekyll-paginate-v2'
19+
gem 'jekyll-scholar'
20+
gem 'jekyll-sitemap'
21+
gem 'jekyll-toc'
22+
gem 'jekyll-twitter-plugin'
23+
gem 'jemoji'
24+
# gem 'mini_racer'
25+
gem 'unicode_utils'
26+
gem 'webrick'
27+
end
28+
group :other_plugins do
29+
gem 'feedjira'
30+
gem 'httparty'
31+
end

LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2022 Maruan Al-Shedivat.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Human-Interactive Robotics Lab, IISc
2+
3+
**Live site:** https://hiro.cps.iisc.ac.in
4+
5+
## Local development
6+
7+
The site is built with [Jekyll](https://jekyllrb.com/). To run it locally:
8+
9+
```bash
10+
bundle install
11+
bundle exec jekyll serve
12+
```
13+
14+
The site is then available at http://localhost:4000.
15+
16+
## Structure
17+
18+
- `_pages/` — pages (Home, Research, People, Publications, Contact)
19+
- `_data/publications.yml` — publication list shown on the Publications page
20+
- `_includes/`, `_layouts/` — templates
21+
- `assets/` — styles, images, and fonts
22+
- `people/drraviprakash/` — Prof. Ravi Prakash's homepage
23+
- `_config.yml` — site configuration
24+
25+
## Editing
26+
27+
- **Publications:** add an entry to `_data/publications.yml`.
28+
- **People:** edit `_pages/people.md`; member photos go in `assets/img/people/`.
29+
30+
## Deployment
31+
32+
Commits pushed to the `master` branch are built and deployed to GitHub Pages
33+
automatically. The custom domain is configured in `CNAME`.
34+
35+
## License
36+
37+
Released under the [MIT License](LICENSE). Built on the
38+
[al-folio](https://github.com/alshedivat/al-folio) Jekyll theme.

0 commit comments

Comments
 (0)