libmedium/templates/gist_insert.html

11 lines
378 B
HTML
Raw Normal View History

2021-11-07 13:22:10 +05:30
<. let gist_id = data.get_gist_id(src); .>
2021-11-04 23:51:59 +05:30
<. let (_, gist)= gists.as_ref().unwrap().iter().find(|(id, _)| id == gist_id).as_ref().unwrap(); .>
2021-12-09 11:36:26 +05:30
<div class="gist_container">
2021-11-04 23:51:59 +05:30
<. for file in &gist.files {.>
2021-12-09 11:36:26 +05:30
<code class="code-block"> <.= file.get_html_content() .> </code>
2021-11-04 23:51:59 +05:30
<.}.>
2021-12-09 11:36:26 +05:30
<a class="gist_link" href="<.= &gist.html_url .>" target="_blank"
2021-11-04 23:51:59 +05:30
>See gist on GitHub</a
>
2021-12-09 11:36:26 +05:30
</div>