-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
9 changed files
with
86 additions
and
6 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
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,5 @@ | ||
[ | ||
{"name": "Kyle", "description": "Likes .NET Development, JavaScript, and Cats"}, | ||
{"name": "Brian", "description": "Automation champion, pottery hobbyist, and volleyball enthusiast"}, | ||
{"name": "Sandra", "description": "Swiss army knife developer, and early morning script powerhouse"} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
layout: default.njk | ||
title_word: Authors | ||
title: Authors | ||
permalink: /authors/index.html | ||
--- | ||
|
||
<h1 class="page-title">Author list</h1> | ||
|
||
<ol class="authorlist list-unstyled"> | ||
{% for author in authorlist | sort(false, false, "name") %} | ||
{% set tagCount = collections.authors[author.name].length %} | ||
<li class="author"> | ||
<a href="/authors/{{author.name}}">{{ author.name }}</a> | ||
<span class="tag-count">× {{tagCount}}</span> | ||
<div class="author-description">{{ author.description }}</div> | ||
</li> | ||
{% endfor %} | ||
</ol> |
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,23 @@ | ||
--- | ||
layout: default.njk | ||
pagination: | ||
data: authorlist | ||
size: 1 | ||
alias: author | ||
permalink: /authors/{{ author.name }}/ | ||
renderData: | ||
title: Posts from {{ author.name }} | ||
title_word: '{{author.name}}' | ||
--- | ||
|
||
<h2><a href="/authors/"> {% include "images/icons/arrow-left.svg" %} All Authors</a></h2> | ||
|
||
<h1 class="page-title">Posts from {{ author.name }}</h1> | ||
|
||
<section class="intro"> | ||
{{ author.description }} | ||
</section> | ||
|
||
|
||
{% set postList = collections.authors[author.name] %} | ||
{% include "_partials/postList.njk" %} |
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