|
877 | 877 |
|
878 | 878 | <xsl:template match="authorialNote">
|
879 | 879 | <xsl:variable name="marker" as="xs:string" select="@marker" />
|
880 |
| - <a id="{ concat('fnref', $marker) }" class="judgment-body__footnote-reference" href="{ concat('#fn', $marker) }"> |
| 880 | + <a id="{ concat('fnref', $marker) }" href="{ concat('#fn', $marker) }" class="judgment-body__footnote-reference"> |
| 881 | + <span class="judgment__hidden"> (Footnote: </span> |
881 | 882 | <sup>
|
882 | 883 | <xsl:value-of select="$marker" />
|
883 | 884 | </sup>
|
| 885 | + <span class="judgment__hidden">)</span> |
884 | 886 | </a>
|
885 | 887 | </xsl:template>
|
886 | 888 |
|
887 | 889 | <xsl:template name="footnotes">
|
888 | 890 | <xsl:param name="footnotes" as="element()*" select="descendant::authorialNote" />
|
889 | 891 | <xsl:if test="exists($footnotes)">
|
890 |
| - <footer> |
| 892 | + <footer class="judgment-footer"> |
891 | 893 | <hr />
|
892 | 894 | <xsl:apply-templates select="$footnotes" mode="footnote" />
|
893 | 895 | </footer>
|
|
902 | 904 |
|
903 | 905 | <xsl:template match="authorialNote/p[1]">
|
904 | 906 | <xsl:variable name="marker" as="xs:string" select="../@marker" />
|
905 |
| - <p id="{ concat('fn', $marker) }"> |
906 |
| - <a href="{ concat('#fnref', $marker) }" class="judgment-body__footnote-reference"> |
| 907 | + <p id="{ concat('fn', $marker) }" class="judgment-footer__footnote"> |
| 908 | + <a href="{ concat('#fnref', $marker) }" class="judgment-footer__footnote-backlink"> |
| 909 | + <span class="judgment__hidden"> (Footnote reference from: </span> |
907 | 910 | <sup>
|
908 | 911 | <xsl:value-of select="$marker" />
|
909 | 912 | </sup>
|
| 913 | + <span class="judgment__hidden">)</span> |
910 | 914 | </a>
|
911 | 915 | <xsl:text> </xsl:text>
|
912 | 916 | <xsl:call-template name="inline" />
|
|
0 commit comments