Skip to content

Commit 4b44eea

Browse files
authored
Merge pull request #4 from vsmalladi/master
Update website. Closes #1 Closes #2
2 parents 3508d09 + 92977da commit 4b44eea

Some content is hidden

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

75 files changed

+22100
-10711
lines changed

Diff for: .github/workflows/jekyll-gh-pages.yml

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
2+
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Build job
26+
build:
27+
runs-on: ubuntu-latest
28+
steps:
29+
- name: Checkout
30+
uses: actions/checkout@v4
31+
- name: Setup Pages
32+
uses: actions/configure-pages@v4
33+
- name: Build with Jekyll
34+
uses: actions/jekyll-build-pages@v1
35+
with:
36+
source: ./
37+
destination: ./_site
38+
- name: Upload artifact
39+
uses: actions/upload-pages-artifact@v2
40+
41+
# Deployment job
42+
deploy:
43+
environment:
44+
name: github-pages
45+
url: ${{ steps.deployment.outputs.page_url }}
46+
runs-on: ubuntu-latest
47+
needs: build
48+
steps:
49+
- name: Deploy to GitHub Pages
50+
id: deployment
51+
uses: actions/deploy-pages@v3

Diff for: CNAME

-1
This file was deleted.

Diff for: EDITING.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Editing the OpenWDL Website
2+
3+
Instructions for editing specific pages and site components.
4+
5+
6+
## Navigation Menus
7+
8+
The navigation is available under:
9+
10+
* `_data/navigation.yml`
11+
12+
## Links & Redirects
13+
14+
Prefer trailing slashes e.g. `/community/` over `/community`
15+
16+
## Pages
17+
18+
### Homepage
19+
20+
**Relevant Files:**
21+
22+
* `index.html` - main homepage
23+
24+
### Pages
25+
26+
New pages can be made in `_pages/`
27+
28+
**Media:**
29+
30+
All media is under `media`
31+
32+
**CSS Styles:**
33+
The pages styles can then be modified in `assets/css/main.scss`.

Diff for: Gemfile

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
source "https://rubygems.org"
2+
3+
source "https://rubygems.org"
4+
5+
gem "github-pages", group: :jekyll_plugins
6+
7+
gem "tzinfo-data"
8+
gem "wdm", "~> 0.1.0" if Gem.win_platform?
9+
gem "webrick", "~> 1.8"
10+
gem "jekyll-remote-theme"
11+
gem "minimal-mistakes-jekyll"
12+
13+
# If you have any plugins, put them here!
14+
group :jekyll_plugins do
15+
gem "jekyll-paginate"
16+
gem "jekyll-sitemap"
17+
gem "jekyll-gist"
18+
gem "jekyll-feed"
19+
gem "jemoji"
20+
gem "jekyll-include-cache"
21+
gem "jekyll-algolia"
22+
end
23+
24+
# Performance-booster for watching directories on Windows
25+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
26+
27+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
28+
# do not have a Java counterpart.
29+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]
30+
31+

0 commit comments

Comments
 (0)