upsc_ca_tracker / templates /full_article_insight.html
Hemann's picture
Upload 13 files
845c792 verified
Raw
History Blame Contribute Delete
425 Bytes
<div class="container">
<h1>Article Content</h1>
<div class="article-content">
{% for section in content %}
{% if section.type == 'h3' %}
<h3>{{ section.text }}</h3>
{% elif section.type == 'p' %}
<p>{{ section.text }}</p>
{% endif %}
{% endfor %}
</div>
<a href="{{ url_for('index') }}" class="btn btn-primary">Back to Articles</a>
</div>