-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add contributor shortcode & update contributors
* Also updated SHORTCODES.md with new shortcode
- Loading branch information
Showing
3 changed files
with
32 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,22 @@ | ||
+++ | ||
title = "Contributors" | ||
weight = 1 | ||
updated = 2022-03-16 | ||
|
||
# Use a shortcode for these that will include some icons/styling for names | ||
# links | ||
# ![GitHub](/images/github-icon.svg) | ||
updated = 2022-03-26 | ||
|
||
# Keep this section short and to the point, please! We can adjust the layout, and | ||
# styling but your name/display name and a link or two would be ideal. Also keep | ||
# it generally alphabetical. | ||
# it generally alphabetical. This may become a two-column page in the future | ||
# if we have enough contributors to justify it. | ||
# | ||
# Ex: | ||
# - Jon Smith | ||
# - @jonsmith | ||
# - sassyuser1 | ||
# - @sassyuser1 | ||
# - Zap Brannigan | ||
# - @ZappyB9218 | ||
# - Jon Smith / @jonsmith | ||
# - sassyuser1 / @sassyuser1 | ||
# - Zap Brannigan / @ZappyB9218 | ||
+++ | ||
|
||
- Alex Adamovic | ||
- [GH: alexadamovic](https://github.com/alexadamovic) | ||
- Brenna Lavin | ||
- [GH: lavinbrenna](https://github.com/lavinbrenna) | ||
- Ryan Bass | ||
- [GH: probablynotryan](https://github.com/probablynotryan) | ||
- Will Watkins | ||
- [GH: wjwat](https://github.com/wjwat) | ||
{{ contributor(name="Alex Adamovic", github="alexadamovic") }} | ||
{{ contributor(name="Andy Plymate", github="Playmatea") }} | ||
{{ contributor(name="Brenna Lavin", github="lavinbrenna") }} | ||
{{ contributor(name="Ryan Bass", github="probablynotryan") }} | ||
{{ contributor(name="William Jameson", github="wcjameson") }} | ||
{{ contributor(name="Will W.", github="wjwat") }} |
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,8 @@ | ||
<div class="contributor-info"> | ||
<p>{{ name }} | ||
{% if github %} / | ||
<img src="/images/github-icon.svg" style="width: 1rem" /> | ||
<a href="https://github.com/{{ github }}">{{ github }}</a> | ||
{% endif %} | ||
</p> | ||
</div> |