Fix a couple of contrast errors

This commit is contained in:
Lewis Dale 2023-11-17 14:03:56 +00:00
parent 4b7e1b7994
commit c865c2fb89
2 changed files with 13 additions and 5 deletions

View File

@ -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>

View File

@ -0,0 +1,6 @@
.token.cdata,
.token.comment,
.token.doctype,
.token.prolog {
color: #999;
}