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
|
||||
//
|
||||
|
|
|
@ -20,10 +20,12 @@
|
|||
*/
|
||||
#}
|
||||
|
||||
<h3 class="subtitle is-mono is-4">More about...</h3>
|
||||
<p>
|
||||
{% for item in items %}
|
||||
{% if loop.length > 1 and loop.index == loop.length %}and {% endif %}
|
||||
<strong>{{ item.content }}</strong>{% if loop.length > 2 and not loop.last %}, {% endif %}
|
||||
{% endfor %}
|
||||
</p>
|
||||
<div class="flow_middle">
|
||||
<h3 class="more-about-label subtitle is-mono is-5">More about...</h3>
|
||||
<p class="more-about-tags">
|
||||
{% for item in items %}
|
||||
{% if loop.length > 1 and loop.index == loop.length %}and {% endif %}
|
||||
{{ item.content }}{% if loop.length > 2 and not loop.last %}, {% endif %}
|
||||
{% endfor %}
|
||||
</p>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue