Skip to content

Commit 7ef6ee8

Browse files
committed
Updated default to use style
1 parent 3cfc794 commit 7ef6ee8

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

_layouts/default.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
<head>
1010
{% include head.html %}
1111
{% include head/custom.html %}
12+
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
13+
1214
</head>
1315

1416
<body>

_pages/publications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ toc: true
1010

1111
{% assign pubs = site.publications | sort: 'date' | reverse %}
1212
{% for pub in pubs %}
13-
{% if pub.doi %} <a href="https://doi.org/{{ pub.doi }}"> **{{pub.title}}** </a> {% else %} {{ **pub.title** }} {% endif %}
13+
{% if pub.doi %} <a href="https://doi.org/{{ pub.doi }}" class="nobluelink"> **{{pub.title}}** </a> {% else %} {{ **pub.title** }} {% endif %}
1414
{{ pub.authors}},
1515
_{{ pub.venue }}_ ({{ pub.date | date: "%Y" }})
1616
{% if pub.pmid %} PMID: {{ pub.pmid }} {% endif %}

assets/css/style.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,9 @@
33
font-weight: bold;
44
text-decoration: none;
55
}
6+
7+
.nobluelink {
8+
color: black !important;
9+
font-weight: bold;
10+
text-decoration: none;
11+
}

0 commit comments

Comments
 (0)