Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #86 from HospitalRun/next
Browse files Browse the repository at this point in the history
Major graphics and content restyle
  • Loading branch information
matteovivona authored Jan 31, 2020
2 parents c582834 + e358c5d commit e5ef753
Show file tree
Hide file tree
Showing 287 changed files with 12,448 additions and 3,030 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
16 changes: 16 additions & 0 deletions .github/workflows/jekyll.yml
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"
6 changes: 6 additions & 0 deletions .gitignore
100644 → 100755
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
3 changes: 3 additions & 0 deletions .jshintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
assets/js/*
node_modules/**/*
bower_components/**/*
10 changes: 10 additions & 0 deletions .jshintrc
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
}
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"files.associations": {
"*.json": "liquid",
"*.html": "liquid"
},
}
30 changes: 30 additions & 0 deletions 404.html
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 -->
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

51 changes: 0 additions & 51 deletions CODE_OF_CONDUCT.md

This file was deleted.

16 changes: 14 additions & 2 deletions Gemfile
100644 → 100755
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
Loading

0 comments on commit e5ef753

Please sign in to comment.