aboutsummaryrefslogtreecommitdiff
path: root/static/cv.xsl
diff options
context:
space:
mode:
authorAlexander Kavon <me+git@alexkavon.com>2025-07-09 04:11:13 -0400
committerAlexander Kavon <me+git@alexkavon.com>2025-07-09 04:11:13 -0400
commit7d1b28c68f1dfccd4864869bcf9568cd5aba0349 (patch)
treeeb4d0692aec0dd7a55bbe21e6f235544f8e98842 /static/cv.xsl
parentbb4d15ec9a2604891e7a020eb0eea0b10d02f6ef (diff)
rename resume to cv
Diffstat (limited to 'static/cv.xsl')
-rw-r--r--static/cv.xsl31
1 files changed, 31 insertions, 0 deletions
diff --git a/static/cv.xsl b/static/cv.xsl
new file mode 100644
index 0000000..38713c5
--- /dev/null
+++ b/static/cv.xsl
@@ -0,0 +1,31 @@
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+ <xsl:output method="html" indent="yes" />
+ <xsl:include href="templates.xsl" />
+
+ <xsl:param name="icon">
+ <xsl:text>paperclip</xsl:text>
+ </xsl:param>
+ <xsl:param name="title">
+ <xsl:text>CV</xsl:text>
+ </xsl:param>
+
+ <xsl:param name="content">
+ <img
+ alt="Alexander F. Kavon CV Page 1"
+ src="/images/resume1.svg"
+ />
+ <img
+ alt="Alexander F. Kavon CV Page 2"
+ src="/images/resume2.svg"
+ width="100%"
+ />
+ </xsl:param>
+
+ <xsl:template match="/">
+ <xsl:call-template name="page">
+ <xsl:with-param name="icon" select="$icon" />
+ <xsl:with-param name="title" select="$title" />
+ <xsl:with-param name="content" select="$content" />
+ </xsl:call-template>
+ </xsl:template>
+</xsl:stylesheet>