14 lines
165 B
HTML
14 lines
165 B
HTML
|
@use super::{header_html, footer_html};
|
||
|
|
||
|
@(fact: String)
|
||
|
|
||
|
@:header_html("Printer Facts")
|
||
|
|
||
|
<p>
|
||
|
<blockquote>
|
||
|
@fact
|
||
|
</blockquote>
|
||
|
</p>
|
||
|
|
||
|
@:footer_html()
|