I have a Sphinx-based website and have specific pages on which I would like to display predefined html files that are stored in a specified directory like _static. In Django, it's possible to simply reference the file from the template using an {{%include}} tag, does something similar exist for ReStructuredText?
I would like to do something like
.. title:: Example Page
=============
Example Page
=============
Introduction to page
<insert html reference to _static folder here>
Description
And after building the website have it combine the html generated from RST and the html file specified.