{% assign posts = include.posts | default: site.posts %}{% assign limit = include.limit | default: site.paginate | default: 10 %}{% assign title = include.title | default: site.title %}{% assign url_prefix = site.url | append: site.baseurl | append: '/' %} {{ title | xml_escape }} {{ site.description | xml_escape }} {{ url_prefix }} {{ site.time | date_to_rfc822 }} {{ site.time | date_to_rfc822 }} Jekyll v{{ jekyll.version }} {% for post in posts limit: limit %} {{ post.title | xml_escape }} {{ post.content | markdownify | replace: 'img src="/', 'img src="$SITE_GOES_HERE' | replace: 'a href="/', 'a href="$SITE_GOES_HERE' | replace: '$SITE_GOES_HERE', url_prefix | xml_escape }} {{ post.date | date_to_rfc822 }} {{ post.url | prepend: url_prefix }} {{ post.url | prepend: url_prefix }} {% for tag in post.tags %} {{ tag | xml_escape }} {% endfor %} {% for cat in post.categories %} {{ cat | xml_escape }} {% endfor %} {% endfor %}