Put more about tags in the flow & style 'em more subtle
This commit is contained in:
parent
4764bda7a4
commit
e07c09f022
2 changed files with 23 additions and 7 deletions
|
@ -110,6 +110,20 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Tags ("More about")
|
||||||
|
|
||||||
|
.more-about-label,
|
||||||
|
.more-about-label:not(:last-child) {
|
||||||
|
margin-bottom: 0.666rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.more-about-tags {
|
||||||
|
margin-top: 0;
|
||||||
|
a {
|
||||||
|
color: $blue-light;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Paragraph
|
// Paragraph
|
||||||
//
|
//
|
||||||
|
|
|
@ -20,10 +20,12 @@
|
||||||
*/
|
*/
|
||||||
#}
|
#}
|
||||||
|
|
||||||
<h3 class="subtitle is-mono is-4">More about...</h3>
|
<div class="flow_middle">
|
||||||
<p>
|
<h3 class="more-about-label subtitle is-mono is-5">More about...</h3>
|
||||||
{% for item in items %}
|
<p class="more-about-tags">
|
||||||
|
{% for item in items %}
|
||||||
{% if loop.length > 1 and loop.index == loop.length %}and {% endif %}
|
{% if loop.length > 1 and loop.index == loop.length %}and {% endif %}
|
||||||
<strong>{{ item.content }}</strong>{% if loop.length > 2 and not loop.last %}, {% endif %}
|
{{ item.content }}{% if loop.length > 2 and not loop.last %}, {% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</p>
|
</p>
|
||||||
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue