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:
|
||||
Piazzolla https://piazzolla.huertatipografica.com/
|
||||
Atkinson Hyperlegible Font https://www.brailleinstitute.org/freefont/
|
||||
Liberation serif https://fonts.adobe.com/fonts/liberation-serif
|
||||
Marek Slab
|
||||
ET Book https://edwardtufte.github.io/et-book/
|
||||
Hanuman https://fonts.google.com/specimen/Hanuman
|
||||
|
|
|
@ -1,12 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Pagwin's Blog</title>
|
||||
<link>https://pagwin.xyz/</link>
|
||||
<description>All of pagwin's blog posts</description>
|
||||
<generator>PSB</generator>
|
||||
<language>en-us</language>
|
||||
<atom:link href="https://pagwin.xyz/index.xml" rel="self" type="application/rss+xml"/>
|
||||
<feed xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<title>Pagwin's Blog</title>
|
||||
<link>https://pagwin.xyz/</link>
|
||||
<updated>{{now}}</updated>
|
||||
<description>All of pagwin's blog posts</description>
|
||||
<generator>PSB</generator>
|
||||
<language>en-us</language>
|
||||
<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>
|
||||
<title></title>
|
||||
|
@ -16,5 +32,4 @@
|
|||
<description></description>
|
||||
</item>
|
||||
-->
|
||||
</channel>
|
||||
</rss>
|
||||
|
|
|
@ -4,14 +4,7 @@
|
|||
<dt class="post-title-item"><a style="font-size:2.2vh;" href="{{link}}">{{title}}</a> </dt>
|
||||
<time datetime="{{{iso_date}}}">{{date}}</time>
|
||||
<dd>
|
||||
<p>Bacon ipsum dolor amet kielbasa corned beef alcatra t-bone, turkey tri-tip swine pork loin. Boudin
|
||||
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>
|
||||
<p>{{description}}</p>
|
||||
</dd>
|
||||
</div>
|
||||
{{/posts}}
|
||||
|
|
Loading…
Reference in a new issue