forked from cory/tildefriends
		
	Minor blog changes I've apparently been sitting on.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4726 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
		| @@ -55,7 +55,7 @@ export function render_html(blogs) { | ||||
| 	return `<!DOCTYPE html> | ||||
| 		<html> | ||||
| 			<head> | ||||
| 				<title>🪵Tilde Blog</title> | ||||
| 				<title>🪵Tilde Friends Blog</title> | ||||
| 				<link href="./atom" type="application/atom+xml" rel="alternate" title="🪵Tilde Blog"/> | ||||
| 				<style> | ||||
| 					html { | ||||
| @@ -77,7 +77,7 @@ export function render_html(blogs) { | ||||
| function render_blog_post_atom(blog_post) { | ||||
| 	return `<entry> | ||||
| 		<title>${escape(blog_post.title)}</title> | ||||
| 		<link href="https://tildefriends.net/~cory/ssb/#${blog_post.id}" /> | ||||
| 		<link href="/~cory/ssb/#${blog_post.id}" /> | ||||
| 		<id>${blog_post.id}</id> | ||||
| 		<published>${escape(new Date(blog_post.timestamp).toString())}</published> | ||||
| 		<summary>${escape(blog_post.summary)}</summary> | ||||
| @@ -93,9 +93,9 @@ export function render_atom(blogs) { | ||||
| <feed xmlns="http://www.w3.org/2005/Atom"> | ||||
| 	<title>🪵Tilde Blog</title> | ||||
| 	<subtitle>A subtitle.</subtitle> | ||||
| 	<link href="https://tildefriends.net/~cory/blog/atom" rel="self"/> | ||||
| 	<link href="https://tildefriends.net/~cory/blog/"/> | ||||
| 	<id>https://www.tildefriends.net/~cory/blog/</id> | ||||
| 	<link href="${core.url}/atom" rel="self"/> | ||||
| 	<link href="${core.url}"/> | ||||
| 	<id>${core.url}</id> | ||||
| 	<updated>${new Date().toString()}</updated> | ||||
| 	${blogs.map(blog_post => render_blog_post_atom(blog_post)).join('\n')} | ||||
| </feed>`; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user