~xdavidwu/xdavidwu.link

9da33af942656c359e7118a7471e1f20cfaaf525 — Michael Rose 8 years ago b7bff6c + 7d21c0a
Merge branch 'feature/use-jekyll-feed' into develop
5 files changed, 12 insertions(+), 51 deletions(-)

M _config.yml
M _data/authors.yml
M _includes/author-profile.html
M _posts/2012-03-15-template-author-override.md
D feed.xml
M _config.yml => _config.yml +1 -0
@@ 150,6 150,7 @@ gems:
  - jekyll-paginate
  - jekyll-sitemap
  - jekyll-gist
  - jekyll-feed

# Outputting
permalink: /:categories/:title/

M _data/authors.yml => _data/authors.yml +3 -3
@@ 1,15 1,15 @@
# Authors

billy_rick:
Billy Rick:
  name        : "Billy Rick"
  web         : "http://thewhip.com"
  uri         : "http://thewhip.com"
  email       : "billy@rick.com"
  bio         : "What do you want, jewels? I am a very extravagant man."
  avatar      : "bio-photo-2.jpg"
  twitter     : "extravagantman"
  google_plus : "BillyRick"

cornelius_fiddlebone:
Cornelius Fiddlebone:
  name        : "Cornelius Fiddlebone"
  email       : "cornelius@thewhip.com"
  bio         : "I ordered what?"

M _includes/author-profile.html => _includes/author-profile.html +3 -0
@@ 12,6 12,9 @@

  <h3 class="author-name">{{ author.name }}</h3>
  {% if author.bio %}<p class="author-bio">{{ author.bio }}</p>{% endif %}
  {% if author.uri %}
    <a href="{{ author.uri }}" class="author-social" target="_blank"><i class="fa fa-fw fa-globe"></i>Website</a>
  {% endif %}
  {% if author.email %}
    <a href="mailto:{{ author.email }}" class="author-social" target="_blank"><i class="fa fa-fw fa-envelope-square"></i> Email</a>
  {% endif %}

M _posts/2012-03-15-template-author-override.md => _posts/2012-03-15-template-author-override.md +5 -5
@@ 1,6 1,6 @@
---
title: "Template: Author Override"
author: billy_rick
author: Billy Rick
excerpt: "A post to test author overrides using a data file."
---
For those of you who may have content written by multiple authors on your site you can now assign different authors to each post if desired.


@@ 12,15 12,15 @@ Start by modifying or creating a new `authors.yml` file in the `_data` folder an
{% highlight yaml %}
# /_data/authors.yml

billy_rick:
Billy Rick:
  name: Billy Rick
  web: http://thewhip.com
  uri: http://thewhip.com
  email: billy@rick.com
  bio: "What do you want, jewels? I am a very extravagant man."
  avatar: bio-photo-2.jpg
  twitter: extravagantman

cornelius_fiddlebone:
Cornelius Fiddlebone:
  name: Cornelius Fiddlebone
  email: cornelius@thewhip.com
  bio: "I ordered what?"


@@ 31,5 31,5 @@ cornelius_fiddlebone:
To assign Billy Rick as an author for our post. You'd add the following YAML front matter to a post:

{% highlight yaml %}
author: billy_rick
author: Billy Rick
{% endhighlight %}

D feed.xml => feed.xml +0 -43
@@ 1,43 0,0 @@
---
sitemap: false
---

<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
<title type="text">{{ site.title }}</title>
<generator uri="https://github.com/jekyll/jekyll">Jekyll</generator>
<link rel="self" type="application/atom+xml" href="{{ site.url }}/feed.xml" />
<link rel="alternate" type="text/html" href="{{ site.url }}" />
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.url }}/</id>
<author>
  <name>{{ site.owner.name }}</name>
  <uri>{{ site.url }}/</uri>
  {% if site.owner.email %}<email>{{ site.owner.email }}</email>{% endif %}
</author>
{% for post in site.posts limit:20 %}
{% if post.author %}
  {% assign author = site.data.authors[post.author] %}
{% else %}
  {% assign author = site.owner %}
{% endif %}
<entry>
  <title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
  <link rel="alternate" type="text/html" href="{{ site.url }}{{ post.url }}" />
  <id>{{ site.url }}{{ post.id }}</id>
  {% if post.modified %}<updated>{{ post.modified | to_xmlschema }}T00:00:00-00:00</updated>
  <published>{{ post.date | date_to_xmlschema }}</published>
  {% else %}<published>{{ post.date | date_to_xmlschema }}</published>
  <updated>{{ post.date | date_to_xmlschema }}</updated>{% endif %}
  <author>
    <name>{{ author.name }}</name>
    <uri>{{ site.url }}</uri>
    {% if author.email %}<email>{{ author.email }}</email>{% endif %}
  </author>
  <content type="html">
    {{ post.content | xml_escape }}
    {% include feed-footer.html %}
  </content>
</entry>
{% endfor %}
</feed>