Add a link to the blog on article cards

Fixes #134
This commit is contained in:
Kevin "Ilphrin" Pellet 2018-07-22 01:42:27 +02:00
parent 24f2030881
commit 89713526e2
2 changed files with 6 additions and 2 deletions

View File

@ -181,11 +181,14 @@ impl Post {
}
pub fn to_json(&self, conn: &PgConnection) -> serde_json::Value {
let blog = self.get_blog(conn);
json!({
"post": self,
"author": self.get_authors(conn)[0].to_json(conn),
"url": format!("/~/{}/{}/", self.get_blog(conn).actor_id, self.slug),
"date": self.creation_date.timestamp()
"url": format!("/~/{}/{}/", blog.actor_id, self.slug),
"date": self.creation_date.timestamp(),
"blog": blog,
"blog_url": format!("/~/{}", blog.actor_id)
})
}

View File

@ -18,6 +18,7 @@
link_4="</a>")
}}
⋅ {{ article.date | date(format="%B %e") }}
⋅ <a href="{{article.blog_url}}">{{article.blog.title}}</a>
</p>
</div>
{% endmacro post_card %}