diff --git a/src/_includes/feed.liquid b/src/_includes/feeds/feed.liquid similarity index 89% rename from src/_includes/feed.liquid rename to src/_includes/feeds/feed.liquid index b220c0a1..2ec2dc75 100644 --- a/src/_includes/feed.liquid +++ b/src/_includes/feeds/feed.liquid @@ -1,5 +1,5 @@ - + {% block title %}All posts • Cory Dransfeldt{% endblock %} diff --git a/src/_includes/feed-follow.liquid b/src/_includes/feeds/follow.liquid similarity index 89% rename from src/_includes/feed-follow.liquid rename to src/_includes/feeds/follow.liquid index 742d8326..87e33d3e 100644 --- a/src/_includes/feed-follow.liquid +++ b/src/_includes/feeds/follow.liquid @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> -<?xml-stylesheet href="/assets/atom-feed-follow.xsl" type="text/xsl" media="screen"?> +<?xml-stylesheet href="/assets/feeds/follow.xsl" type="text/xsl" media="screen"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title> {% block title %}Follow • Cory Dransfeldt{% endblock %} diff --git a/src/_includes/feed-links.liquid b/src/_includes/feeds/links.liquid similarity index 89% rename from src/_includes/feed-links.liquid rename to src/_includes/feeds/links.liquid index a93c0980..26fb21f4 100644 --- a/src/_includes/feed-links.liquid +++ b/src/_includes/feeds/links.liquid @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> -<?xml-stylesheet href="/assets/atom-feed-links.xsl" type="text/xsl" media="screen"?> +<?xml-stylesheet href="/assets/feeds/links.xsl" type="text/xsl" media="screen"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title> {% block title %}Links • Cory Dransfeldt{% endblock %} diff --git a/src/assets/atom-feed-follow.xsl b/src/assets/atom-feed-follow.xsl deleted file mode 100644 index 41054977..00000000 --- a/src/assets/atom-feed-follow.xsl +++ /dev/null @@ -1,73 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<xsl:stylesheet - version="3.0" - xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:atom="http://www.w3.org/2005/Atom"> - <xsl:output method="html" version="4.0" encoding="UTF-8" indent="yes"/> - <xsl:template match="/"> - <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> - <head> - <meta charset="utf-8"/> - <meta name="viewport" content="width=device-width, initial-scale=1"/> - <title><xsl:value-of select="atom:feed/atom:title"/> - - - - - - - - - - -
-
- -
-
-

- - - - Feed preview • follow -

-

My activity from around the web.

-

-
-
    - -
-
-
-
-

This is a web feed, also known as an RSS or Atom feed.

-

Subscribe by copying the URL from the address bar into your newsreader.

-
- Visit About Feeds to get started with newsreaders and subscribing. It's free. -
-
-
- - - - -
  • - - - - - - -
  • -
    - \ No newline at end of file diff --git a/src/assets/atom-feed-links.xsl b/src/assets/atom-feed-links.xsl deleted file mode 100644 index bd9199c7..00000000 --- a/src/assets/atom-feed-links.xsl +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - <xsl:value-of select="atom:feed/atom:title"/> - - - - - - - - - - -
    -
    - -
    -
    -

    - - - - Feed preview • links -

    -

    Recently read and favorited links sourced from my Instapaper likes.

    -

    -
    -
      - -
    -
    -
    -
    -

    This is a web feed, also known as an RSS or Atom feed.

    -

    Subscribe by copying the URL from the address bar into your newsreader.

    -
    - Visit About Feeds to get started with newsreaders and subscribing. It's free. -
    -
    -
    - - -
    - -
  • - - - - - - -
  • -
    -
    \ No newline at end of file diff --git a/src/assets/atom-feed.xsl b/src/assets/atom-feed.xsl deleted file mode 100644 index 513b5bb2..00000000 --- a/src/assets/atom-feed.xsl +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - <xsl:value-of select="atom:feed/atom:title"/> - - - - - - - - - - -
    -
    - -
    -
    -

    - - - - Feed preview • all posts -

    -

    I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, music, writing, reading and tv and movies.

    -

    This feed preview only shows titles, but the actual feed contains the full content.

    -

    I also have a JSON feed available.

    - - Visit site → - -

    -
    - -
    -
    -
    -

    This is a web feed, also known as an RSS or Atom feed.

    -

    Subscribe by copying the URL from the address bar into your newsreader.

    -
    - Visit About Feeds to get started with newsreaders and subscribing. It's free. -
    -
    -
    - - -
    - -
    -

    - - - - - - -

    -
    - - - Read more → -
    -
    -
    -
    diff --git a/src/assets/feeds/feed.xsl b/src/assets/feeds/feed.xsl new file mode 100644 index 00000000..b57b569b --- /dev/null +++ b/src/assets/feeds/feed.xsl @@ -0,0 +1,116 @@ + + + + + + + + + + <xsl:value-of select="atom:feed/atom:title"/> + + + + + + + + + + + +
    +
    + +
    +
    +

    + + + + Feed preview • all posts +

    +

    I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 + rescue dogs, technology, automation, music, writing, reading and tv and movies. +

    +

    + This feed preview only shows titles, but the actual feed contains the full content. +

    +

    + I also have a JSON feed available. +

    + + Visit site → + +

    + +

    +
    + +
    +
    +
    +

    + This is a web feed, + also known as an RSS or Atom feed. +

    +

    + Subscribe + by copying the URL from the address bar into your newsreader. +

    +
    + Visit About Feeds to get started with newsreaders and + subscribing. It's free. + +
    +
    +
    + + +
    + +
    +

    + + + + + + +

    + +
    +
    +
    diff --git a/src/assets/feeds/follow.xsl b/src/assets/feeds/follow.xsl new file mode 100644 index 00000000..456e3b1c --- /dev/null +++ b/src/assets/feeds/follow.xsl @@ -0,0 +1,96 @@ + + + + + + + + + + <xsl:value-of select="atom:feed/atom:title"/> + + + + + + + + + + + +
    +
    + +
    +
    +

    + + + + Feed preview • follow +

    +

    My activity from around the web.

    +

    + +

    +
    +
      + +
    +
    +
    +
    +

    + This is a web feed, + also known as an RSS or Atom feed. +

    +

    + Subscribe + by copying the URL from the address bar into your newsreader. +

    +
    + Visit About Feeds to get started with newsreaders and + subscribing. It's free. + +
    +
    +
    + + +
    + +
  • + + + + + + + • + +
  • +
    +
    \ No newline at end of file diff --git a/src/assets/feeds/links.xsl b/src/assets/feeds/links.xsl new file mode 100644 index 00000000..d83aeeb4 --- /dev/null +++ b/src/assets/feeds/links.xsl @@ -0,0 +1,98 @@ + + + + + + + + + + <xsl:value-of select="atom:feed/atom:title"/> + + + + + + + + + + + +
    +
    + +
    +
    +

    + + + + Feed preview • links +

    +

    Recently read and favorited links + sourced from my Instapaper likes. +

    +

    + +

    +
    +
      + +
    +
    +
    +
    +

    + This is a web feed, + also known as an RSS or Atom feed. +

    +

    + Subscribe + by copying the URL from the address bar into your newsreader. +

    +
    + Visit About Feeds to get started with newsreaders and + subscribing. It's free. + +
    +
    +
    + + +
    + +
  • + + + + + + + • + +
  • +
    +
    \ No newline at end of file diff --git a/src/feeds/all.liquid b/src/feeds/all.liquid index ca4cc5d1..6312c3ac 100644 --- a/src/feeds/all.liquid +++ b/src/feeds/all.liquid @@ -2,9 +2,9 @@ layout: null permalink: /feed.xml --- -{% layout "./_includes/feed.liquid" %} +{% layout "./_includes/feeds/feed.liquid" %} {% block title %}All posts • Cory Dransfeldt{% endblock %} -{% block self %}all.xml{% endblock %} +{% block self %}feed.xml{% endblock %} {% block update %}{{ collections.posts[0].date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %} {% block entries %} {% assign posts = collections.posts | reverse %} diff --git a/src/feeds/follow.liquid b/src/feeds/follow.liquid index 241a52ad..fae2eb95 100644 --- a/src/feeds/follow.liquid +++ b/src/feeds/follow.liquid @@ -2,7 +2,7 @@ layout: null permalink: /follow.xml --- -{% layout "./_includes/feed-follow.liquid" %} +{% layout "./_includes/feeds/follow.liquid" %} {% block title %}Follow • Cory Dransfeldt{% endblock %} {% block self %}follow.xml{% endblock %} {% block update %}{{ follow.posts[0].date_published | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %} diff --git a/src/feeds/links.liquid b/src/feeds/links.liquid index 1ee08b34..282f8b3b 100644 --- a/src/feeds/links.liquid +++ b/src/feeds/links.liquid @@ -2,7 +2,7 @@ layout: null permalink: /links.xml --- -{% layout "./_includes/feed-links.liquid" %} +{% layout "./_includes/feeds/links.liquid" %} {% block title %}Links • Cory Dransfeldt{% endblock %} {% block self %}links.xml{% endblock %} {% block update %}{{ articles[0].time | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}