Create a portfolio website using Flask. You have a project that implements template inheritance from the parent base.html, a large piece of code that includes the following:
<div id = "past-works">
{% block past-works %}{% endblock %}
</div>
Your child template is first.html and it's the first page of the website. It is connected with the parent template. Now, you want to add the coming soon text inside the past-works ID in the base.html. Write the code inside first.html to accomplish that.
Write your answer inside the "answer" variable's triple quotes.