add rows cat

This commit is contained in:
2018-08-27 14:35:10 +02:00
parent 6fb89c5eb1
commit ee476d4c59
10 changed files with 35 additions and 23 deletions
+1 -1
View File
@@ -1 +1 @@
{"01-08-2018":19,"02-08-2018":424,"20-08-2018":112,"21-08-2018":214,"22-08-2018":440,"24-08-2018":273,"27-08-2018":86} {"01-08-2018":19,"02-08-2018":424,"20-08-2018":112,"21-08-2018":214,"22-08-2018":440,"24-08-2018":273,"27-08-2018":195}
+1 -1
View File
@@ -1 +1 @@
{"08-2018":1568} {"08-2018":1677}
+1 -1
View File
@@ -1 +1 @@
{"\/":790,"\/projets":99,"\/news":146,"\/a-propros":56,"\/projets-n-1":1,"\/projets\/projets-n-1":428,"\/projets\/projet-n-2":33,"\/projets\/projets-n-2":4,"\/projets\/projets-n":11} {"\/":813,"\/projets":99,"\/news":146,"\/a-propros":56,"\/projets-n-1":1,"\/projets\/projets-n-1":502,"\/projets\/projet-n-2":42,"\/projets\/projets-n-2":5,"\/projets\/projets-n":13}
+1 -1
View File
@@ -1 +1 @@
{"4b84b15bff6ee5796152495a230e45e3d7e947d9":1535364559} {"4b84b15bff6ee5796152495a230e45e3d7e947d9":1535373240}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
-1
View File
@@ -46,7 +46,6 @@ function catprojets() {
$txt.css({ $txt.css({
"height" : $Htxt + "px" "height" : $Htxt + "px"
}); });
}); });
} }
+9 -7
View File
@@ -55,26 +55,28 @@
right: 0; right: 0;
width: calc(100% / 3); width: calc(100% / 3);
height: calc(100% - 90px); height: calc(100% - 90px);
padding: 0 30px 0 30px; padding: 20px 30px 0px 30px;
overflow-x: auto; overflow-x: auto;
h3{ h3{
margin: 20px 0 10px 0; margin: 0px 0 10px 0;
} }
} }
.taxonomy{ .taxonomy{
width: auto; width: calc(100% / 3);
height: auto; height: auto;
background: white; background: white;
position:fixed; position:fixed;
bottom: 0; bottom: 0;
border-top: 2px solid black;
span{ span{
margin: auto 0;
.row{
border-top: 2px solid black;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
margin: auto 0; justify-content: space-between;
a{ a{
padding: 10px 30px; margin: 10px 30px;
border-bottom: 2px solid black; }
} }
} }
} }
@@ -6,6 +6,7 @@
{% set hero_image_name = page.header.hero_image %} {% set hero_image_name = page.header.hero_image %}
{% block hero %} {% block hero %}
{% if hero_image_name %} {% if hero_image_name %}
{% set hero_image = page.media[hero_image_name] %} {% set hero_image = page.media[hero_image_name] %}
{% set content %} {% set content %}
@@ -1,7 +1,15 @@
{% if page.taxonomy.tag %} {% if page.taxonomy.tag %}
<span class="tags"> <span class="tags">
{% 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> {% 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 %} {% endfor %}
</div>
{% endfor %}
</span> </span>
{% endif %} {% endif %}