0byt3m1n1
Path:
C:
/
Program Files
/
RStudio
/
resources
/
app
/
bin
/
quarto
/
share
/
projects
/
website
/
listing
/
feed
/
[
Home
]
File: item.ejs.md
<item> <title><%= escape(item.title) %></title> <% if (item.authors) { %> <% for (const author of item.authors) { %> <dc:creator><%= escape(author) %></dc:creator> <% } %> <% } %> <link><%= item.link %></link> <description><%= escape(item.description) %></description> <% if (item.categories && Array.isArray(item.categories)) { %> <% for (const category of item.categories) { %> <category><%= escape(category) %></category> <% } %> <% } %> <guid><%= item.guid %></guid> <% if (item.pubDate) { %> <pubDate><%= item.pubDate.toUTCString() %></pubDate> <% } %> <% if (item.image) { %> <% const imgWidthAttr = item.imageHeight ? ` width="${item.imageWidth}"` : ''; const imgHeightAttr = item.imageHeight ? ` height="${item.imageHeight}"` : ''; const imgTypeAttr = item.imageContentType ? ` type="${item.imageContentType}"`: ''; %> <media:content url="<%- item.image %>" medium="image"<%= imgTypeAttr %><%= imgHeightAttr %><%= imgWidthAttr %>/> <% } %> </item>