build(aio): move "see also" block to export-base template (#22681)
This makes it easier for all the API docs to display "see also" links in a consitent manner. PR Close #22681
This commit is contained in:
parent
3f70aba272
commit
38fef1588d
|
@ -5,6 +5,7 @@
|
||||||
{% include "includes/security-notes.html" %}
|
{% include "includes/security-notes.html" %}
|
||||||
{% include "includes/deprecation.html" %}
|
{% include "includes/deprecation.html" %}
|
||||||
{% block overview %}{% endblock %}
|
{% block overview %}{% endblock %}
|
||||||
|
{% include "includes/see-also.html" %}
|
||||||
{% block details %}{% endblock %}
|
{% block details %}{% endblock %}
|
||||||
{% include "includes/usageNotes.html" %}
|
{% include "includes/usageNotes.html" %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -6,5 +6,4 @@
|
||||||
}
|
}
|
||||||
</code-example>
|
</code-example>
|
||||||
{$ descendants.renderDescendants(doc, 'class', 'Subclasses') $}
|
{$ descendants.renderDescendants(doc, 'class', 'Subclasses') $}
|
||||||
{% include "includes/see-also.html" %}
|
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -8,5 +8,4 @@ interface {$ doc.name $}{$ doc.typeParams | escape $}{$ memberHelper.renderHerit
|
||||||
</code-example>
|
</code-example>
|
||||||
{$ descendants.renderDescendants(doc, 'interface', 'Child Interfaces') $}
|
{$ descendants.renderDescendants(doc, 'interface', 'Child Interfaces') $}
|
||||||
{$ descendants.renderDescendants(doc, 'class', 'Class Implementations') $}
|
{$ descendants.renderDescendants(doc, 'class', 'Class Implementations') $}
|
||||||
{% include "includes/see-also.html" %}
|
|
||||||
</section>
|
</section>
|
Loading…
Reference in New Issue