-
Notifications
You must be signed in to change notification settings - Fork 8
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
humancompanion-usds
committed
Jul 2, 2019
1 parent
a755876
commit decee56
Showing
7 changed files
with
68 additions
and
25 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 |
---|---|---|
@@ -1,25 +1,27 @@ | ||
<div id="breadcrumbs" class="chp-breadcrumb"> | ||
<ul vocab="http://schema.org" typeof="BreadcrumbList" class="chp-breadcrumb__list"> | ||
{% assign crumbs = page.url | remove:'/index.html' | split: '/' %} | ||
<li class="chp-breadcrumb__item" property="itemListElement" typeof="ListItem"> | ||
<a class="chp-breadcrumb__link" property="item" typeof="WebPage" href="/"> | ||
Home | ||
</a> | ||
</li> | ||
{% for crumb in crumbs offset: 1 %} | ||
{% assign position = position | plus: 1 %} | ||
{% if forloop.last %} | ||
/ {{ crumb | replace:'-',' ' | remove:'.html' | capitalize }} | ||
{% else %} | ||
<li class="chp-breadcrumb__item" property="itemListElement" typeof="ListItem"> | ||
/ <a class="chp-breadcrumb__link" property="item" typeof="WebPage" href="{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' | replace:'without-plugin/','without-plugins/' }}{% endfor %}"> | ||
<span property="name" typeof="WebPage"> | ||
{{ crumb | replace:'-',' ' | remove:'.html' | capitalize }} | ||
</span> | ||
<meta property="position" content="{{ position }}"> | ||
</a> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
<div class="chp-breadcrumb__body"> | ||
<ul vocab="http://schema.org" typeof="BreadcrumbList" class="chp-breadcrumb__list"> | ||
{% assign crumbs = page.url | remove:'/index.html' | split: '/' %} | ||
<li class="chp-breadcrumb__item" property="itemListElement" typeof="ListItem"> | ||
<a class="chp-breadcrumb__link" property="item" typeof="WebPage" href="/"> | ||
Home | ||
</a> | ||
</li> | ||
{% for crumb in crumbs offset: 1 %} | ||
{% assign position = position | plus: 1 %} | ||
{% if forloop.last %} | ||
/ {{ crumb | replace:'-',' ' | remove:'.html' | capitalize }} | ||
{% else %} | ||
<li class="chp-breadcrumb__item" property="itemListElement" typeof="ListItem"> | ||
/ <a class="chp-breadcrumb__link" property="item" typeof="WebPage" href="{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' | replace:'without-plugin/','without-plugins/' }}{% endfor %}"> | ||
<span property="name" typeof="WebPage"> | ||
{{ crumb | replace:'-',' ' | remove:'.html' | capitalize }} | ||
</span> | ||
<meta property="position" content="{{ position }}"> | ||
</a> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> |
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,5 @@ | ||
<footer class="chp-footer"> | ||
<div class="chp-footer__body"> | ||
<a href="{{site.baseurl}}/changelog/">Read our change log to see what has changed on this site.</a> | ||
</div> | ||
</footer> |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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,25 @@ | ||
--- | ||
layout: article | ||
section: changelog | ||
permalink: /changelog/ | ||
--- | ||
|
||
ll notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). | ||
|
||
<!-- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) --> | ||
|
||
## [1.0.0](https://github.com/labopm/competitive-hiring-pilot/releases) - 2019-07-02 | ||
### Added | ||
- This changelog! | ||
- Breadcrumbs on hiring phase pages. | ||
- New toolkit content. | ||
|
||
### Changed | ||
- Revised the getting started, job analysis, job announcement, and reviewing resumes pages. | ||
- Moved metadata on top of toolkit | ||
- Updated all intro text in hiring phases. | ||
|
||
### Removed | ||
- Links to role-specific index pages as the content there is out-of-date. |