NDOJ/templates/two-column-content.html

20 lines
403 B
HTML
Raw Normal View History

2023-02-08 05:14:48 +00:00
{% set is_two_column = true %}
2023-01-27 23:11:10 +00: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-30 03:18:22 +00:00
min-width: 96%;
max-width: 96%;
margin-left: 2%;
2023-01-27 23:11:10 +00:00
}
}
</style>
{% block two_col_media %}{% endblock %}
{% endblock %}