diff options
author | Christian Segundo | 2024-09-01 11:31:53 +0200 |
---|---|---|
committer | Christian Segundo | 2024-09-01 11:32:40 +0200 |
commit | 9b448a802404bf009b6d8bcbd1362c7d196c2a5c (patch) | |
tree | 7e1303e53fb0d587138a77105fa3ef17aa2a868a /layouts/partials | |
parent | c1c67bbdbe1d9d11f63569f8442c6917dc4aaa07 (diff) | |
download | check-caps-lock-9b448a802404bf009b6d8bcbd1362c7d196c2a5c.tar.gz |
replace the rss menu item with the icon using js
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/extend_footer.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/layouts/partials/extend_footer.html b/layouts/partials/extend_footer.html new file mode 100644 index 0000000..970c63e --- /dev/null +++ b/layouts/partials/extend_footer.html @@ -0,0 +1,4 @@ +<script> + /* Modify the rss menu item with the icon */ + document.getElementById('menu').querySelector('li a[title="rss"]').innerHTML = '<icon class="rss"> </icon>'; +</script> |