libmedium/templates/post.html

60 lines
2 KiB
HTML
Raw Normal View History

2021-10-31 23:26:15 +05:30
<!DOCTYPE html>
<html lang="en">
<head>
2021-11-07 13:22:10 +05:30
<. include!("./post_meta.html"); .>
2021-10-31 23:26:15 +05:30
</head>
<body>
<main class="container">
2021-11-02 13:40:13 +05:30
<h1><.= data.title .></h1>
2021-10-31 23:26:15 +05:30
<p class="meta">
2021-11-02 13:40:13 +05:30
<a class="author" href="https://medium.com/u/<.= data.creator.id .>" rel="noreferrer">
<img
src="https://miro.medium.com/<.= data.creator.image_id .>"
class="author__photo"
alt="<.= data.creator.name .>"
/>
2021-10-31 23:26:15 +05:30
<.= data.creator.name .></a
>
2021-11-07 13:22:10 +05:30
on <.= &date .> &#183; <.= reading_time .> min read
2021-10-31 23:26:15 +05:30
</p>
<article>
2021-11-04 23:51:59 +05:30
<. let paragraphs = &data.content.body_model.paragraphs; .>
2021-10-31 23:26:15 +05:30
<. for (pindex, p) in paragraphs.iter().enumerate() {.>
2021-11-02 13:40:13 +05:30
<. if pindex == 0 && p.type_ == "H3" {.>
2021-10-31 23:26:15 +05:30
<. continue; .>
<.}.>
2021-11-02 13:40:13 +05:30
<. if p.type_ == "IMG" {.>
2021-10-31 23:26:15 +05:30
<. include!("./img.html"); .>
<.} else if p.type_ == "P" {.>
<. include!("./p.html"); .>
<.} else if p.type_ == "H2" {.>
<h2><.= p.text .></h2>
<.} else if p.type_ == "H3" {.>
<h3><.= p.text .></h3>
<.} else if p.type_ == "H4" {.>
<h4><.= p.text .></h4>
<.} else if p.type_ == "H5" {.>
<h5><.= p.text .></h5>
<.} else if p.type_ == "H6" {.>
<h6><.= p.text .></h6>
2021-11-02 21:04:02 +05:30
<.} else if p.type_ == "IFRAME" {.>
<. let src = &p.iframe.as_ref().unwrap().media_resource.as_ref().unwrap().href; .>
<. if src.contains("gist.github.com"){.>
2021-11-04 23:51:59 +05:30
<. include!("./gist_insert.html"); .>
<!--
<iframe src="<.#= crate::V1_API_ROUTES.proxy.get_gist(&src) .>" frameborder="0"></iframe>
<a href="<.= src .>">Click here to open gist on GitHub</a>
2021-11-04 23:51:59 +05:30
-->
<.} else {.>
2021-11-02 21:04:02 +05:30
<iframe src="<.= src .>" frameborder="0"></iframe>
<.}.>
2021-10-31 23:26:15 +05:30
<.}.>
<.}.>
</article>
</main>
</body>
<style>
<. include!("./main.css"); .>
2021-10-31 23:26:15 +05:30
</style>
</html>