Skip to content

Commit

Permalink
Adjust highlight color.
Browse files Browse the repository at this point in the history
  • Loading branch information
mayo committed Dec 5, 2024
1 parent d4b40dc commit a8483d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion sass/media/css/_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ rgb(255,0,0);
rgb(195,0,0);
rgb(236,28,36);
red;
rgb(236,33,39);
*/
$link: rgb(236,33,39);
$link: rgb(196,33,39);

.theme-darkest {
color: $darkest;
Expand Down
8 changes: 4 additions & 4 deletions templates/blog/article.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,18 @@ <h1 class="p-name">{{ article.title | safe }}</h1>
{% endif %}

{% if article.taxonomies.tags %}
<dt><i class="fa fa-tags" title="Tags"></i><span class="sr-only">Tags</span></dt>
<dd>{% for tag in article.taxonomies.tags %}
<dt><i class="fa fa-tags" title="Tags"></i><span class="sr-only">Tags</span></dt>
<dd>{% for tag in article.taxonomies.tags %}
<a href="{{ get_taxonomy_url(kind="tags", name=tag) }}" class="p-category">{{ tag }}</a>
{% endfor %}</dd>
{% endif %}

{% if article.extra['syndicate-to'] %}
<dt><i class="fa fa-share-alt-square" title="Syndicated to"></i><span class="sr-only">Syndicated to</span></dt>
<dt><i class="fa fa-share-alt-square" title="Syndicated to"></i><span class="sr-only">Syndicated to</span></dt>
{% for item in article.extra['syndicate-to'] %}
{% set url = item.url | default(value=item) %}
{% set name = item.name | default(value=url) %}
<dd><a href="{{ url }}" class="u-syndication">{{ name }}</a></dd>
<dd><a href="{{ url }}" class="u-syndication">{{ name }}</a></dd>
{% endfor %}
{% endif %}
</dl>
Expand Down

0 comments on commit a8483d3

Please sign in to comment.