I want to create a simple website in ASP classic. I would like to create ex. a navigator which stay the same for all pages. I did something similar using flask. There I could create a "layout.html" which all other pages extended and could insert html code directly to it.
Layout.html
... some html code
{% block column_mid %}
{% endblock %}
... some html code
Index.html
{% extends "layout.html" %}
{% block column_mid %}
<div id="column_mid">
<h1>Heading</h1>
<br>
<div class="column">
<p>Some text</p>
</div>
</div>
{% endblock %}