aboutsummaryrefslogtreecommitdiff
path: root/static/resume.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/resume.xsl
parentbb4d15ec9a2604891e7a020eb0eea0b10d02f6ef (diff)
rename resume to cv
Diffstat (limited to 'static/resume.xsl')
-rw-r--r--static/resume.xsl31
1 files changed, 0 insertions, 31 deletions
diff --git a/static/resume.xsl b/static/resume.xsl
deleted file mode 100644
index 38713c5..0000000
--- a/static/resume.xsl
+++ /dev/null
@@ -1,31 +0,0 @@
-<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>