mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-13 16:45:14 +01:00
feed fixes
This commit is contained in:
parent
2c58aece7e
commit
0fa60e4706
@ -17,7 +17,4 @@ tags:
|
||||
|
||||
From the [AT&T; Archives](http://techchannel.att.com/play-video.cfm/2012/7/18/AT&T-Archives-First-Computer-Generated-Graphics-Film):
|
||||
|
||||
> This film was a specific project to define how a particular type of satellite would move through space. Edward E. Zajac made, and narrated, the film, which is considered to be possibly the very first computer graphics film ever. Zajac programmed the calculations in FORTRAN, then used a program written by Zajac's colleague, Frank Sinden, called ORBIT. The original computations were fed into the computer via punch cards [...]
|
||||
|
||||
|
||||
|
||||
> This film was a specific project to define how a particular type of satellite would move through space. Edward E. Zajac made, and narrated, the film, which is considered to be possibly the very first computer graphics film ever. Zajac programmed the calculations in FORTRAN, then used a program written by Zajac's colleague, Frank Sinden, called ORBIT. The original computations were fed into the computer via punch cards […]
|
||||
|
@ -11,7 +11,7 @@ redirect_from:
|
||||
<link href="{{ site.url }}/feed/" type="application/atom+xml" rel="self" />
|
||||
<link href="{{ site.url }}/" rel="alternate" type="text/html" />
|
||||
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
||||
<id>{{ site.url }}</id>
|
||||
<id>{{ site.url }}/</id>
|
||||
|
||||
{% if site.name %}
|
||||
<title>{{ site.name | xml_escape }}</title>
|
||||
@ -37,13 +37,13 @@ redirect_from:
|
||||
</author>
|
||||
{% endif %}
|
||||
|
||||
{% for post in site.posts limit:100 %}
|
||||
<entry>
|
||||
{% for post in site.posts limit:100 %}
|
||||
<entry>
|
||||
{% if post.layout == "link" %}
|
||||
<title>{{ post.title | markdownify | strip_html | strip_newlines | xml_escape | titlecase }} →</title>
|
||||
<title type="html">{{ post.title | markdownify | strip_html | strip_newlines | xml_escape | titlecase }} →</title>
|
||||
<link href="{{ post.linkurl | escape }}" rel="alternate" type="text/html" title="{{ post.title | xml_escape }}" />
|
||||
{% else %}
|
||||
<title>{{ post.title | markdownify | strip_html | strip_newlines | xml_escape | titlecase }}</title>
|
||||
<title type="html">{{ post.title | markdownify | strip_html | strip_newlines | xml_escape | titlecase }}</title>
|
||||
<link href="{{ site.url }}{{ post.url | escape }}" rel="alternate" type="text/html" title="{{ post.title | xml_escape }}" />
|
||||
{% endif %}
|
||||
|
||||
@ -51,21 +51,21 @@ redirect_from:
|
||||
|
||||
{% if post.updated %}
|
||||
<updated>{{ post.updated | date_to_xmlschema }}</updated>
|
||||
{% else %}
|
||||
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
||||
{% else %}
|
||||
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
||||
{% endif %}
|
||||
|
||||
<id>{{ post.id | prepend: site.url | xml_escape }}</id>
|
||||
<content type="html" xml:base="{{ post.url | xml_escape }}">
|
||||
<content type="html" xml:base="{{ post.url | xml_escape }}">
|
||||
{% if post.image %}
|
||||
<img src="{{ site.url }}/media/{{ post.image }}" />
|
||||
{% endif %}
|
||||
|
||||
{{ post.content | markdownify | xml_escape }}
|
||||
|
||||
{% if post.layout == "link" %}
|
||||
<a href="{{ post.linkurl }}">Go to source &#187;</a> <br />
|
||||
<a href="{{ site.url }}{{ post.url }}" title="Permalink for this post">&#8734;</a>
|
||||
{% if post.layout == "link" %}
|
||||
<a href="{{ post.linkurl | xml_escape }}">Go to source &#187;</a> <br />
|
||||
<a href="{{ site.url }}{{ post.url | xml_escape }}" title="Permalink for this post">&#8734;</a>
|
||||
{% endif %}
|
||||
</content>
|
||||
|
||||
@ -94,9 +94,9 @@ redirect_from:
|
||||
{% endfor %}
|
||||
|
||||
{% if post.excerpt %}
|
||||
<summary>{{ post.excerpt | markdownify | strip_html | strip_newlines | xml_escape }}</summary>
|
||||
<summary type="html">{{ post.excerpt | markdownify | strip_html | strip_newlines | xml_escape }}</summary>
|
||||
{% endif %}
|
||||
|
||||
</entry>
|
||||
{% endfor %}
|
||||
</entry>
|
||||
{% endfor %}
|
||||
</feed>
|
||||
|
Loading…
Reference in New Issue
Block a user