NDOJ/templates/two-column-content.html

20 lines
403 B
HTML
Raw Normal View History

2023-02-07 23:14:48 -06:00
{% set is_two_column = true %}
2023-01-27 17:11:10 -06:00
{% 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 {
2024-01-29 21:18:22 -06:00
min-width: 96%;
max-width: 96%;
margin-left: 2%;
2023-01-27 17:11:10 -06:00
}
}
</style>
{% block two_col_media %}{% endblock %}
{% endblock %}