NDOJ/templates/two-column-content.html
2024-01-29 21:18:22 -06:00

19 lines
403 B
HTML

{% set is_two_column = true %}
{% extends "three-column-content.html" %}
{% block three_col_js %}
{% block two_col_js %}{% endblock %}
{% endblock %}
{% block three_col_media %}
<style>
@media (min-width: 800px) {
.middle-content {
min-width: 96%;
max-width: 96%;
margin-left: 2%;
}
}
</style>
{% block two_col_media %}{% endblock %}
{% endblock %}