NDOJ/templates/two-column-content.html
2024-06-24 19:42:50 -05:00

15 lines
323 B
HTML

{% set is_two_column = true %}
{% extends "three-column-content.html" %}
{% 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 %}