This repository has been archived by the owner on Nov 23, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from HospitalRun/next
Major graphics and content restyle
- Loading branch information
Showing
287 changed files
with
12,448 additions
and
3,030 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Jekyll site CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Build the site in the jekyll/builder container | ||
run: | | ||
docker run \ | ||
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ | ||
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
_site | ||
*.scssc | ||
.DS_Store | ||
|
||
node_modules/ | ||
|
||
Gemfile.lock | ||
package-lock.json | ||
.ruby-version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
assets/js/* | ||
node_modules/**/* | ||
bower_components/**/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"undef": true, | ||
"unused": true, | ||
"browser": true, | ||
"devel": true, | ||
"multistr": true, | ||
"globals": { | ||
"$": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"files.associations": { | ||
"*.json": "liquid", | ||
"*.html": "liquid" | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
layout: default | ||
description: "Meta description for 404 page" | ||
keywords: "responsive,jekyll,minimal template" | ||
--- | ||
|
||
|
||
|
||
<!-- Start Page Title Area --> | ||
<section class="page-title-area bg-cover1" | ||
> | ||
<div class="page-title-wrapper section-spacing"> | ||
<div class="page-title text-center white-text"> | ||
<h1 class="heading-1">404</h1> | ||
</div> | ||
</div> | ||
</section> | ||
<!-- End Page Title Area --> | ||
<!-- Start Blog Area --> | ||
<section class="blog-area bg-color1"> | ||
<div class="blog-wrapper section-spacing"> | ||
<div class="container"> | ||
<div class="error-page text-center"> | ||
<img src="images/404.png" alt="error logo"> | ||
<p><a href="{{site.baseurl}}" class="btn-style2 btn btn-primary">Back to Home</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
<!-- End Blog Area --> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
source "https://rubygems.org" | ||
|
||
gem 'github-pages', group: :jekyll_plugins | ||
# Default theme for new Jekyll sites. | ||
gem "minima", "~> 2" | ||
|
||
gem 'tzinfo-data', platforms: [:x64_mingw, :mingw, :mswin] | ||
# GitHub Pages: to upgrade, run `bundle update github-pages`. | ||
gem "github-pages", group: :jekyll_plugins | ||
|
||
# If you have any plugins, put them here! | ||
group :jekyll_plugins do | ||
gem "jekyll-feed" | ||
gem "jekyll-paginate-v2" | ||
gem 'jekyll-tagging' | ||
gem 'jekyll-archives' | ||
gem 'jekyll-extract-element', '0.0.7' | ||
gem 'jekyll-seo-tag' | ||
end |
Oops, something went wrong.