forked from cadey/xesite
backpost a bunch of other articles, make linkposts work properly
This commit is contained in:
parent
43b37834dd
commit
4dde8b26b8
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "Animal Crossing New Horizons: An Island of Stability in an Unstable World"
|
||||
date: 2021-02-28
|
||||
tags:
|
||||
- link
|
||||
redirect_to: https://www.getrevue.co/profile/theprincessxena/issues/animal-crossing-new-horizons-an-island-of-stability-in-an-unstable-world-313933
|
||||
---
|
||||
|
||||
# Animal Crossing New Horizons: An Island of Stability in an Unstable World
|
||||
|
||||
Check out this post [on my
|
||||
newsletter](https://www.getrevue.co/profile/theprincessxena/issues/animal-crossing-new-horizons-an-island-of-stability-in-an-unstable-world-313933)!
|
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "Immigration"
|
||||
date: 2021-04-11
|
||||
tags:
|
||||
- link
|
||||
redirect_to: https://www.getrevue.co/profile/theprincessxena/issues/immigration-313938
|
||||
---
|
||||
|
||||
# Immigration
|
||||
|
||||
Check out this post [on my
|
||||
newsletter](https://www.getrevue.co/profile/theprincessxena/issues/immigration-313938)!
|
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "Mara's Ransack of Castle Charon"
|
||||
date: 2021-03-28
|
||||
tags:
|
||||
- link
|
||||
redirect_to: https://www.getrevue.co/profile/theprincessxena/issues/mara-s-ransack-of-castle-charon-313935
|
||||
---
|
||||
|
||||
# Mara's Ransack of Castle Charon
|
||||
|
||||
Check out this post [on my
|
||||
newsletter](https://www.getrevue.co/profile/theprincessxena/issues/mara-s-ransack-of-castle-charon-313935)!
|
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "My Thoughts on Paper Mario and the Origami King"
|
||||
date: 2021-01-30
|
||||
tags:
|
||||
- link
|
||||
redirect_to: https://www.getrevue.co/profile/theprincessxena/issues/my-thoughts-on-paper-mario-and-the-origami-king-312718
|
||||
---
|
||||
|
||||
# My Thoughts on Paper Mario and the Origami King
|
||||
|
||||
Check out this post [on my
|
||||
newsletter](https://www.getrevue.co/profile/theprincessxena/issues/my-thoughts-on-paper-mario-and-the-origami-king-312718)!
|
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "Plurality as Portrayed in Cyberpunk 2077 and Xenoblade Chronicles 2"
|
||||
date: 2021-02-14
|
||||
tags:
|
||||
- link
|
||||
redirect_to: https://www.getrevue.co/profile/theprincessxena/issues/plurality-as-portrayed-in-cyberpunk-2077-and-xenoblade-chronicles-2-313929
|
||||
---
|
||||
|
||||
# Plurality as Portrayed in Cyberpunk 2077 and Xenoblade Chronicles 2
|
||||
|
||||
Check out this post [on my
|
||||
newsletter](https://www.getrevue.co/profile/theprincessxena/issues/plurality-as-portrayed-in-cyberpunk-2077-and-xenoblade-chronicles-2-313929)!
|
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "The Sisyphean Task Of DNS Client Config on Linux"
|
||||
date: 2021-04-15
|
||||
tags:
|
||||
- link
|
||||
redirect_to: https://tailscale.com/blog/sisyphean-dns-client-linux/
|
||||
---
|
||||
|
||||
# The Sisyphean Task Of DNS Client Config on Linux
|
||||
|
||||
Check out this post [on the Tailscale
|
||||
blog](https://tailscale.com/blog/sisyphean-dns-client-linux/)!
|
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "Philosophy of Tailscale: Social proximity networks"
|
||||
date: 2021-02-02
|
||||
tags:
|
||||
- link
|
||||
redirect_to: https://tailscale.com/blog/social-proximity-networks/
|
||||
---
|
||||
|
||||
# Philosophy of Tailscale: Social proximity networks
|
||||
|
||||
Check out this post [on the Tailscale
|
||||
blog](https://tailscale.com/blog/social-proximity-networks/)!
|
|
@ -20,8 +20,8 @@ impl Into<jsonfeed::Item> for Post {
|
|||
let mut result = jsonfeed::Item::builder()
|
||||
.title(self.front_matter.title)
|
||||
.content_html(self.body_html)
|
||||
.id(format!("https://christine.website/{}", self.link))
|
||||
.url(format!("https://christine.website/{}", self.link))
|
||||
.id(self.link.clone())
|
||||
.url(self.link)
|
||||
.date_published(self.date.to_rfc3339())
|
||||
.author(
|
||||
jsonfeed::Author::new()
|
||||
|
@ -30,6 +30,10 @@ impl Into<jsonfeed::Item> for Post {
|
|||
.avatar("https://christine.website/static/img/avatar.png"),
|
||||
);
|
||||
|
||||
if let Some(url) = self.front_matter.redirect_to {
|
||||
result = result.url(url);
|
||||
}
|
||||
|
||||
let mut tags: Vec<String> = vec![];
|
||||
|
||||
if let Some(series) = self.front_matter.series {
|
||||
|
@ -79,7 +83,16 @@ async fn read_post(dir: &str, fname: PathBuf) -> Result<Post> {
|
|||
let body = &body[content_offset..];
|
||||
let date = NaiveDate::parse_from_str(&front_matter.clone().date, "%Y-%m-%d")
|
||||
.map_err(|why| eyre!("error parsing date in {:?}: {}", fname, why))?;
|
||||
let link = format!("{}/{}", dir, fname.file_stem().unwrap().to_str().unwrap());
|
||||
|
||||
let link = match front_matter.redirect_to {
|
||||
Some(ref url) => url.clone(),
|
||||
None => format!(
|
||||
"https://christine.website/{}/{}",
|
||||
dir,
|
||||
fname.file_stem().unwrap().to_str().unwrap()
|
||||
),
|
||||
};
|
||||
|
||||
let body_html = crate::app::markdown::render(&body)
|
||||
.wrap_err_with(|| format!("can't parse markdown for {:?}", fname))?;
|
||||
let date: DateTime<FixedOffset> =
|
||||
|
|
|
@ -17,10 +17,10 @@
|
|||
<generator uri="@env!("CARGO_PKG_REPOSITORY")" version="@env!("CARGO_PKG_VERSION")">@env!("CARGO_PKG_NAME")</generator>
|
||||
@for post in posts {
|
||||
<entry>
|
||||
<id>https://christine.website/@post.link</id>
|
||||
<id>@post.link</id>
|
||||
<title>@post.front_matter.title</title>
|
||||
<published>@post.date.to_rfc3339()</published>
|
||||
<link href="https://christine.website/@post.link" rel="alternate"/>
|
||||
<link href="@post.link" rel="alternate"/>
|
||||
</entry>
|
||||
}
|
||||
</feed>
|
||||
|
|
|
@ -12,9 +12,9 @@
|
|||
<ttl>1440</ttl>
|
||||
@for post in posts {
|
||||
<item>
|
||||
<guid>https://christine.website/@post.link</guid>
|
||||
<guid>@post.link</guid>
|
||||
<title>@post.front_matter.title</title>
|
||||
<link>https://christine.website/@post.link</link>
|
||||
<link>@post.link</link>
|
||||
<description><![CDATA[@Html(post.body_html)]]></description>
|
||||
<pubDate>@post.date.to_rfc2822()</pubDate>
|
||||
</item>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<p>
|
||||
<ul>
|
||||
@for post in posts {
|
||||
<li>@post.date.format("%Y-%m-%d") - <a href="/@post.link">@post.front_matter.title</a></li>
|
||||
<li>@post.date.format("%Y-%m-%d") - <a href="@post.link">@post.front_matter.title</a></li>
|
||||
}
|
||||
</ul>
|
||||
</p>
|
||||
|
|
Loading…
Reference in New Issue