remove row cat+ catmultiple

This commit is contained in:
2018-08-27 14:50:40 +02:00
parent ee476d4c59
commit febd794621
18 changed files with 32 additions and 68 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+4 -3
View File
@@ -92,6 +92,9 @@ header{
display: none;
}
ul.visible, ul.active{
border-left: 2px solid black;
border-bottom: 2px solid black;
background: white;
display: flex;
position: absolute;
top: 40px;
@@ -99,9 +102,7 @@ header{
width: auto;
z-index: 999;
a{
border-left: 2px solid black;
border-bottom: 2px solid black;
background: white;
display: flex;
width: auto;
height: 50px;
+3 -6
View File
@@ -67,18 +67,15 @@
background: white;
position:fixed;
bottom: 0;
border-top: 2px solid black;
span{
display: flex;
flex-wrap: wrap;
margin: auto 0;
.row{
border-top: 2px solid black;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
a{
margin: 10px 30px;
}
}
}
}
}
}
@@ -1,15 +1,7 @@
{% if page.taxonomy.tag %}
<span class="tags">
{% for tag in page.taxonomy.tag|batch(4) %}
<div class="row">
{% for tag in tag %}
<a href="{{ blog.url|rtrim('/') }}/tag{{ config.system.param_sep }}{{ tag }}">{{ tag }}</a>
{% endfor %}
</div>
{% endfor %}
{% for tag in page.taxonomy.tag %}
<a class="label label-rounded {{ label_style ?: 'label-secondary' }} p-category" href="{{ blog.url|rtrim('/') }}/tag{{ config.system.param_sep }}{{ tag }}#body-wrapper">{{ tag }}</a>
{% endfor %}
</span>
{% endif %}