blob: 60e31ffbce7aff92c180b0a0083e7392e167b45f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@use super::{header_html, footer_html};
@(resume: impl ToHtml)
@:header_html(Some("Resume"), None)
@resume
<hr />
<a href="/static/resume/resume.md">Plain-text version of this resume here</a>
@:footer_html()
|