diff options
author | Nicholas Johnson <nick@nicholasjohnson.ch> | 2023-02-24 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <nick@nicholasjohnson.ch> | 2023-02-24 00:00:00 +0000 |
commit | 1f150c43cafe1074b3fe24bf1472a49b8bcf8ff583bdc6f7098e266f6e1e84c9 (patch) | |
tree | 46812eb780edc7aa6ba2ea0f5420b09f95fc8e1dff35e4aaaa72ef95c04acf89 /layouts/index.html | |
parent | f02f6b0db09299666d78ae21243b7e919a275edb95458f33404c9eaff3aa92be (diff) | |
download | hugo-theme-journal-1f150c43cafe1074b3fe24bf1472a49b8bcf8ff583bdc6f7098e266f6e1e84c9.tar.gz hugo-theme-journal-1f150c43cafe1074b3fe24bf1472a49b8bcf8ff583bdc6f7098e266f6e1e84c9.zip |
Exclude link emojis from links
Diffstat (limited to 'layouts/index.html')
-rw-r--r-- | layouts/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/index.html b/layouts/index.html index 72b0e05..78fd0d5 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -6,7 +6,7 @@ <nav> <ul class="list"> {{- range .Site.Menus.main }} - <li class="list__item"><a class="link" href="{{ .URL }}" rel="noreferrer">{{ emojify ":link:" }} {{ .Name }}</a></li> + <li class="list__item">{{ emojify ":link:" }} <a class="link" href="{{ .URL }}" rel="noreferrer">{{ .Name }}</a></li> {{- end }} </ul> </nav> |