feat: feed template

This commit is contained in:
Cory Dransfeldt 2024-08-10 11:28:32 -07:00
parent 068aeed2e6
commit 7d78546205
No known key found for this signature in database
3 changed files with 52 additions and 3 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "21.8.0",
"version": "21.8.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "21.8.0",
"version": "21.8.1",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "21.8.0",
"version": "21.8.1",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"scripts": {

49
src/assets/xsl/feed.xsl Normal file
View file

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:feedpress="https://feed.press/xmlns" version="1.0">
<xsl:template match="/">
<html>
<xsl:copy-of select="$html_TemplateHeader"/>
<xsl:apply-templates select="rss/channel"/>
</html>
</xsl:template>
<xsl:template match="channel">
<body class="main-wrapper">
<header class="main-title">
<h1><xsl:value-of select="title"/></h1>
<a href="{$feedUrl}" class="link-icon">
<svg class="rss-icon" stroke="var(--brand-rss)"></svg>
</a>
</header>
<main>
<section class="posts-wrapper">
<xsl:apply-templates select="item"/>
</section>
</main>
<footer>
<xsl:copy-of select="$html_FeedFooterScripts"/>
</footer>
</body>
</xsl:template>
<xsl:template match="item">
<article class="home-status article">
<header>
<h2>
<a href="{link}">
<xsl:value-of select="title"/>
</a>
</h2>
</header>
<p><xsl:value-of select="description"/></p>
<footer>
<div class="time-wrapper">
<time datetime="{pubDate}">
<xsl:value-of select="pubDate"/>
</time>
<span rel="author">
<xsl:value-of select="author"/>
</span>
</div>
</footer>
</article>
</xsl:template>
</xsl:stylesheet>