-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
659149f
commit 884b52b
Showing
78 changed files
with
559 additions
and
791 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,11 +1,11 @@ | ||
--- | ||
title: This page doesn't exist | ||
permalink: "/404.html" | ||
title: Page not found | ||
heading: Whoops, it looks like you got lost | ||
sub_heading: We broke this page, or it doesn't exist | ||
banner_image: "/images/banner.png" | ||
layout: error | ||
publish_date: 2017-11-01 03:00:00 +0000 | ||
description: Whoops! It looks like this page doesn't exist | ||
--- | ||
|
||
banner_image: "/img/banner.png" | ||
hero_button: | ||
text: Go home | ||
href: "/" | ||
permalink: "/404.html" | ||
layout: default | ||
--- |
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
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
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,23 +1,34 @@ | ||
title: Belkirk College of Engineering | ||
short_title: Belkirk | ||
description: The Forestry.io Prouct Tour Demo | ||
description: Belkirk Demo Site for Forestry.io | ||
baseurl: /belkirk-jekyll-demo/ | ||
permalink: "/:path/" | ||
defaults: | ||
- scope: | ||
path: "" | ||
values: | ||
layout: page | ||
- scope: | ||
path: "" | ||
type: posts | ||
values: | ||
layout: post | ||
collections: | ||
people: | ||
title: People | ||
output: true | ||
permalink: "/about/people/:path/" | ||
permalink: "/about/:path/" | ||
posts: | ||
title: Posts | ||
output: true | ||
projects: | ||
title: Projects | ||
output: true | ||
permalink: "/projects/:path/" | ||
publications: | ||
title: Publications | ||
output: false | ||
permalink: "/publications/:path/" | ||
tag_page_layout: tag_page | ||
tag_page_dir: tag | ||
jekyll-archives: | ||
enabled: all | ||
layout: "archive" | ||
gems: | ||
- jekyll-menus | ||
- jekyll-feed | ||
- jekyll/tagging | ||
- jekyll-archives |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
- title: 'Bioengineering: A Conceptual Approach' | ||
date: 2017-09-30 14:43:51 +0000 | ||
PDF: '' | ||
author: _people/kellie-brewer.md | ||
layout: default | ||
project: _projects/ | ||
link: https://www.amazon.ca/Bioengineering-Conceptual-Approach-Mirjana-Pavlovic-ebook/dp/B00RZJ8DL2/ | ||
- title: Mechanical Engineering Handbook | ||
date: 2017-09-30 14:43:51 +0000 | ||
PDF: '' | ||
author: _people/murphy-tiernan.md | ||
layout: default | ||
project: [] | ||
link: https://www.amazon.ca/Mechanical-Engineering-Handbook-R-Jain/dp/1683921305/ | ||
- title: 'Modern Engineering: First Edition' | ||
date: 2017-09-30 14:43:51 +0000 | ||
PDF: "/uploads/2017/11/16/modern-engineering.pdf" | ||
author: _people/murphy-tiernan.md | ||
layout: default | ||
project: _projects/modern-engineering.md |
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
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,24 @@ | ||
{% comment %} | ||
Creates a breadcrumb from the page's URL | ||
{% endcomment %} | ||
|
||
<nav class="breadcrumbs"> | ||
<div class="container"> | ||
{% assign parts = page.url | split: "/" %} | ||
<ul> | ||
<li><a href="{{ site.baseurl | default "/" }}">Home</a> <i class="fa fa-chevron-right"></i></li> | ||
{% for part in parts offset: 1 %} | ||
{% if forloop.last %} | ||
<li class="active">{{ page.title }}</li> | ||
{% else %} | ||
{% assign text = part | replace:'-', ' ' | capitalize %} | ||
{% assign limit = forloop.index | plus: 1 %} | ||
{% capture href %}{% for part in parts limit: limit %}{{ part | append: '/' }}{% endfor %}{% endcapture %} | ||
<li> | ||
<a href="{{ href | relative_url }}">{{ text }}</a> <i class="fa fa-chevron-right"></i> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</nav> |
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
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,8 +1,20 @@ | ||
<header class="site-header"> | ||
<div class="container"> | ||
<h1 class="logo"><a href="{{ "/" | absolute_url }}">{{ site.name }}</a></h1> | ||
<nav class="main-nav"> | ||
{% include nav-main.html %} | ||
</nav> | ||
</div> | ||
</header> | ||
<!doctype html> | ||
<html class="no-js" lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<title>{{ page.title }} - {{ site.title }}</title> | ||
<meta name="description" content="{% if .page.description %}{{ .page.description }}{% else %}{{ .site.description }}{% endif %}"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/png" href="{{ "/img/favicon.png" | relative_url }}"/> | ||
<link rel="stylesheet" href="https://yui-s.yahooapis.com/pure/0.6.0/pure-min.css"> | ||
<!--[if lte IE 8]> | ||
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/grids-responsive-old-ie-min.css"> | ||
<![endif]--> | ||
<!--[if gt IE 8]><!--> | ||
<link rel="stylesheet" href="https://yui-s.yahooapis.com/pure/0.6.0/grids-responsive-min.css"> | ||
<!--<![endif]--> | ||
<link rel="stylesheet" href="{{ "/css/main.css" | relative_url }}"> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css"> | ||
</head> | ||
<body> |
Oops, something went wrong.