export const title = 'My RSS feed'; export const description = 'This sure is a nice RSS feed'; export const site = 'https://example.com'; export const phpFeedItem = { link: '/php', title: 'Remember PHP?', pubDate: '1994-05-03', description: 'PHP is a general-purpose scripting language geared toward web development. It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1994.', }; export const phpFeedItemWithContent = { ...phpFeedItem, content: `

${phpFeedItem.title}

${phpFeedItem.description}

`, }; export const phpFeedItemWithCustomData = { ...phpFeedItem, customData: '', }; export const web1FeedItem = { // Should support empty string as a URL (possible for homepage route) link: '', title: 'Web 1.0', pubDate: '1997-05-03', description: 'Web 1.0 is the term used for the earliest version of the Internet as it emerged from its origins with Defense Advanced Research Projects Agency (DARPA) and became, for the first time, a global network representing the future of digital communications.', }; export const web1FeedItemWithContent = { ...web1FeedItem, content: `

${web1FeedItem.title}

${web1FeedItem.description}

`, };