some work on rss and adding a post description
This commit is contained in:
parent
391b289ff2
commit
253a9ad858
3 changed files with 26 additions and 17 deletions
1
notes
1
notes
|
@ -20,6 +20,7 @@ https://web.dev/articles/optimize-webfont-loading
|
||||||
noted fonts:
|
noted fonts:
|
||||||
Piazzolla https://piazzolla.huertatipografica.com/
|
Piazzolla https://piazzolla.huertatipografica.com/
|
||||||
Atkinson Hyperlegible Font https://www.brailleinstitute.org/freefont/
|
Atkinson Hyperlegible Font https://www.brailleinstitute.org/freefont/
|
||||||
|
Liberation serif https://fonts.adobe.com/fonts/liberation-serif
|
||||||
Marek Slab
|
Marek Slab
|
||||||
ET Book https://edwardtufte.github.io/et-book/
|
ET Book https://edwardtufte.github.io/et-book/
|
||||||
Hanuman https://fonts.google.com/specimen/Hanuman
|
Hanuman https://fonts.google.com/specimen/Hanuman
|
||||||
|
|
|
@ -1,12 +1,28 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss xmlns:atom="http://www.w3.org/2005/Atom">
|
<feed xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<title>Pagwin's Blog</title>
|
||||||
<title>Pagwin's Blog</title>
|
<link>https://pagwin.xyz/</link>
|
||||||
<link>https://pagwin.xyz/</link>
|
<updated>{{now}}</updated>
|
||||||
<description>All of pagwin's blog posts</description>
|
<description>All of pagwin's blog posts</description>
|
||||||
<generator>PSB</generator>
|
<generator>PSB</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<atom:link href="https://pagwin.xyz/index.xml" rel="self" type="application/rss+xml"/>
|
<link href="https://pagwin.xyz/index.xml" rel="self" type="application/rss+xml"/>
|
||||||
|
<author>
|
||||||
|
<name>Pagwin</name>
|
||||||
|
<email>rss-contact@pagwin.xyz</email>
|
||||||
|
</author>
|
||||||
|
{{#posts}}
|
||||||
|
<entry>
|
||||||
|
<title>{{title}}</title>
|
||||||
|
<link href="{{link}}"/>
|
||||||
|
<updated>{{iso_date}}</updated>
|
||||||
|
<summary>{{description}}</summary>
|
||||||
|
<id>{{id}}</id>
|
||||||
|
{{iso_date}}
|
||||||
|
</entry>
|
||||||
|
{{/posts}}
|
||||||
|
<!--
|
||||||
|
-->
|
||||||
<!--
|
<!--
|
||||||
<item>
|
<item>
|
||||||
<title></title>
|
<title></title>
|
||||||
|
@ -16,5 +32,4 @@
|
||||||
<description></description>
|
<description></description>
|
||||||
</item>
|
</item>
|
||||||
-->
|
-->
|
||||||
</channel>
|
|
||||||
</rss>
|
</rss>
|
||||||
|
|
|
@ -4,14 +4,7 @@
|
||||||
<dt class="post-title-item"><a style="font-size:2.2vh;" href="{{link}}">{{title}}</a> </dt>
|
<dt class="post-title-item"><a style="font-size:2.2vh;" href="{{link}}">{{title}}</a> </dt>
|
||||||
<time datetime="{{{iso_date}}}">{{date}}</time>
|
<time datetime="{{{iso_date}}}">{{date}}</time>
|
||||||
<dd>
|
<dd>
|
||||||
<p>Bacon ipsum dolor amet kielbasa corned beef alcatra t-bone, turkey tri-tip swine pork loin. Boudin
|
<p>{{description}}</p>
|
||||||
buffalo
|
|
||||||
sirloin, turkey chislic pork loin beef ribs alcatra andouille jerky. Burgdoggen pork belly shankle swine
|
|
||||||
jerky. Buffalo ham hock shankle prosciutto landjaeger capicola turducken shank kielbasa short ribs
|
|
||||||
tongue
|
|
||||||
short loin frankfurter pork chop. Pork chop boudin pig bresaola ball tip beef ribs sausage corned beef
|
|
||||||
ham
|
|
||||||
hock.</p>
|
|
||||||
</dd>
|
</dd>
|
||||||
</div>
|
</div>
|
||||||
{{/posts}}
|
{{/posts}}
|
||||||
|
|
Loading…
Reference in a new issue