diff options
| -rw-r--r-- | templates/blog/articles.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/templates/blog/articles.html b/templates/blog/articles.html index 6c3ae869..87bb53cf 100644 --- a/templates/blog/articles.html +++ b/templates/blog/articles.html @@ -7,8 +7,6 @@ <h2 style="margin-top:15px;"> Posts made in Category: {{ category_name }}</h2> {% endif %} - -{% if posts %} <form id="filters" method="get"> <span><b>Filters:</b> </span> <label for="order_by">Order By: </label> @@ -33,6 +31,7 @@ <span> </span> <input type="submit" value="Apply" class="button button-special" /> </form> +{% if posts %} <div style="margin-top: -10px;"> {% include 'blog/partials/post_list.html' %} </div> |
