Fix a couple of contrast errors
This commit is contained in:
parent
4b7e1b7994
commit
c865c2fb89
@ -13,12 +13,14 @@ eleventyComputed:
|
|||||||
{{ content | safe }}
|
{{ content | safe }}
|
||||||
</div>
|
</div>
|
||||||
{% if post.tags | length %}
|
{% if post.tags | length %}
|
||||||
<ul role="list">
|
<section>
|
||||||
<h2>Tags:</h2>
|
<h2>Tags:</h2>
|
||||||
{% for tag in post.tags %}
|
<ul role="list">
|
||||||
<li><a href="/post/tag/{{ tag.slug }}" rel="tag">#{{ tag.name }}</a></li>
|
{% for tag in post.tags %}
|
||||||
{% endfor %}
|
<li><a href="/post/tag/{{ tag.slug }}" rel="tag">#{{ tag.name }}</a></li>
|
||||||
</ul>
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
6
src/css/exceptions/prism.css
Normal file
6
src/css/exceptions/prism.css
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
.token.cdata,
|
||||||
|
.token.comment,
|
||||||
|
.token.doctype,
|
||||||
|
.token.prolog {
|
||||||
|
color: #999;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user