| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- exclude-result-prefixes="xs"
- version="2.0">
- <xsl:output method="xml" indent="yes"/>
-
-
-
- <xsl:template match="/">
- <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
- <fo:layout-master-set>
- <fo:simple-page-master master-name="cuda">
- <fo:region-body/>
- </fo:simple-page-master>
- </fo:layout-master-set>
-
- <fo:page-sequence master-reference="cuda">
- <fo:flow flow-name="xsl-region-body">
-
- <fo:block>Kolos indyjski asdsa dasd </fo:block>
-
- <fo:block space-after="0.1in">
- W roku jakims mieszkancy czegos costasm adsa dasd ad asd asd
- </fo:block>
-
- <fo:block space-after="0.1in">
- Kolos ten został
-
- </fo:block>
- <fo:block>
- <fo:external-graphic src="../images/2198_procesy5_tlo.jpg" content-height="3.5in"/>
-
- </fo:block>
- </fo:flow>
- </fo:page-sequence>
-
- </fo:root>
-
- </xsl:template>
-
- </xsl:stylesheet>
|