1
<?xml version="1.0" encoding="UTF-8"?>
2
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3
	version="1.0" xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0">
4
5
	<xsl:output method="xml" indent="yes" />
6
7
	<xsl:template match="/">
8
		<manifest:manifest>
9
			<manifest:file-entry
10
				manifest:media-type="application/vnd.oasis.opendocument.presentation"
11
				manifest:full-path="/" />
12
			<manifest:file-entry manifest:media-type="text/xml"
13
				manifest:full-path="content.xml" />
14
			<manifest:file-entry manifest:media-type="text/xml"
15
				manifest:full-path="styles.xml" />
16
		</manifest:manifest>
17
	</xsl:template>
18
19
</xsl:stylesheet>