Corrections
This commit is contained in:
parent
1e0a656968
commit
b383e43d1f
2 changed files with 11 additions and 7 deletions
|
@ -65,6 +65,12 @@
|
||||||
{% block extra_content %}{% endblock extra_content %}
|
{% block extra_content %}{% endblock extra_content %}
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
{% if blog_page.display_categories %}
|
||||||
|
<ul class="col-sm-4 col-md-3 sidebar">
|
||||||
|
<h4>{% trans 'Categories' %}</h4>
|
||||||
|
{% categories_list %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
{% if blog_page.display_last_entries %}
|
{% if blog_page.display_last_entries %}
|
||||||
<ul class="col-sm-4 col-md-3 sidebar">
|
<ul class="col-sm-4 col-md-3 sidebar">
|
||||||
<h4>{% trans 'Last Entries' %}</h4>
|
<h4>{% trans 'Last Entries' %}</h4>
|
||||||
|
@ -77,12 +83,6 @@
|
||||||
{% popular_entries blog_page.num_popular_entries %}
|
{% popular_entries blog_page.num_popular_entries %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if blog_page.display_categories %}
|
|
||||||
<ul class="col-sm-4 col-md-3 sidebar">
|
|
||||||
<h4>{% trans 'Categories' %}</h4>
|
|
||||||
{% categories_list %}
|
|
||||||
</ul>
|
|
||||||
{% endif %}
|
|
||||||
{% if blog_page.display_tags %}
|
{% if blog_page.display_tags %}
|
||||||
<ul class="col-sm-4 col-md-3 sidebar blog-tags">
|
<ul class="col-sm-4 col-md-3 sidebar blog-tags">
|
||||||
<h4>{% trans 'Tags' %}</h4>
|
<h4>{% trans 'Tags' %}</h4>
|
||||||
|
|
|
@ -221,6 +221,8 @@ $gallery-height: 550px;
|
||||||
|
|
||||||
// Home page intro link as button
|
// Home page intro link as button
|
||||||
#banner .rich-text h4 {
|
#banner .rich-text h4 {
|
||||||
|
float: right;
|
||||||
|
margin-left: 1em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
#banner .rich-text h4 a:active {
|
#banner .rich-text h4 a:active {
|
||||||
|
@ -249,10 +251,12 @@ $gallery-height: 550px;
|
||||||
|
|
||||||
background-color: #f0f0f0;
|
background-color: #f0f0f0;
|
||||||
color: $brand-primary;
|
color: $brand-primary;
|
||||||
|
/*
|
||||||
|
// Outline logo
|
||||||
padding-left: 100px;
|
padding-left: 100px;
|
||||||
background-image: url(../images/logo-blueoutline.png);
|
background-image: url(../images/logo-blueoutline.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: contain;
|
background-size: contain;
|
||||||
background-position: -20px;
|
background-position: -20px;
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue