82 changed files with 160 additions and 101 deletions
@ -0,0 +1,53 @@ |
|||
# Map of short name to more information. `name` will be used but if you don't |
|||
# want to use your real name, just use whatever. If url is included, your name |
|||
# will be a link to the provided url. |
|||
billandjing: |
|||
name: Bill Fisher and Jing Chen |
|||
chenglou: |
|||
name: Cheng Lou |
|||
url: https://twitter.com/_chenglou |
|||
Daniel15: |
|||
name: Daniel Lo Nigro |
|||
url: http://dan.cx/ |
|||
fisherwebdev: |
|||
name: Bill Fisher |
|||
url: https://twitter.com/fisherwebdev |
|||
jgebhardt: |
|||
name: Jonas Gebhardt |
|||
url: https://twitter.com/jonasgebhardt |
|||
josephsavona: |
|||
name: Joseph Savona |
|||
url: https://twitter.com/en_JS |
|||
kmeht: |
|||
name: Kunal Mehta |
|||
url: https://github.com/kmeht |
|||
LoukaN: |
|||
name: Lou Husson |
|||
url: https://twitter.com/loukan42 |
|||
matthewjohnston4: |
|||
name: Matthew Johnston |
|||
url: https://github.com/matthewathome |
|||
petehunt: |
|||
name: Pete Hunt |
|||
url: https://twitter.com/floydophone |
|||
schrockn: |
|||
name: Nick Schrock |
|||
url: https://twitter.com/schrockn |
|||
sebmarkbage: |
|||
name: Sebastian Markbåge |
|||
url: https://twitter.com/sebmarkbage |
|||
spicyj: |
|||
name: Ben Alpert |
|||
url: http://benalpert.com |
|||
steveluscher: |
|||
name: Steven Luscher |
|||
url: https://twitter.com/steveluscher |
|||
vjeux: |
|||
name: Vjeux |
|||
url: https://twitter.com/vjeux |
|||
wincent: |
|||
name: Greg Hurrell |
|||
url: https://twitter.com/wincent |
|||
zpao: |
|||
name: Paul O’Shannessy |
|||
url: https://twitter.com/zpao |
@ -1,10 +1,30 @@ |
|||
<h1><a href="/react{{ page.url }}">{{ page.title }}</a></h1> |
|||
<p class="meta">{{ page.date | date_to_string }} by {{ page.author }}</p> |
|||
{% assign page = include.page %} |
|||
{% assign author = site.data.authors[page.author] %} |
|||
|
|||
<div id="post"> |
|||
{% if content != '' %} |
|||
{{ page.excerpt }} |
|||
<h1> |
|||
{% if include.isPermalink %} |
|||
{{ page.title }} |
|||
{% else %} |
|||
{{ page.content }} |
|||
<a href="/react{{ page.url }}">{{ page.title }}</a> |
|||
{% endif %} |
|||
</h1> |
|||
|
|||
<p class="meta"> |
|||
{{ page.date | date: "%B %e, %Y" }} |
|||
by |
|||
{% if author.url %} |
|||
<a href="{{author.url}}">{{ author.name }}</a> |
|||
{% else %} |
|||
{{ author.name }} |
|||
{% endif %} |
|||
</p> |
|||
|
|||
<hr> |
|||
|
|||
<div class="post"> |
|||
{{ include.content }} |
|||
</div> |
|||
|
|||
{% if include.isPermalink %} |
|||
<div class="fb-like" data-send="true" data-width="650" data-show-faces="false"></div> |
|||
{% endif %} |
|||
|
Loading…
Reference in new issue