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/deprecation.html" %}
|
||||
{% block overview %}{% endblock %}
|
||||
{% include "includes/see-also.html" %}
|
||||
{% block details %}{% endblock %}
|
||||
{% include "includes/usageNotes.html" %}
|
||||
{% endblock %}
|
||||
|
|
|
@ -6,5 +6,4 @@
|
|||
}
|
||||
</code-example>
|
||||
{$ descendants.renderDescendants(doc, 'class', 'Subclasses') $}
|
||||
{% include "includes/see-also.html" %}
|
||||
</section>
|
||||
|
|
|
@ -8,5 +8,4 @@ interface {$ doc.name $}{$ doc.typeParams | escape $}{$ memberHelper.renderHerit
|
|||
</code-example>
|
||||
{$ descendants.renderDescendants(doc, 'interface', 'Child Interfaces') $}
|
||||
{$ descendants.renderDescendants(doc, 'class', 'Class Implementations') $}
|
||||
{% include "includes/see-also.html" %}
|
||||
</section>
|
Loading…
Reference in New Issue