Skip to content
Snippets Groups Projects
Commit 082d0300 authored by julientaq's avatar julientaq
Browse files

remove icon.json

add super to script for products
parent b9e35a1f
No related branches found
No related tags found
No related merge requests found
[{
}]
twitter
linkedin
mattermost
gitlab
\ No newline at end of file
......@@ -42,6 +42,8 @@
{% endblock %}
{% block customScripts %}
{# super will keep all the other custom scripts needed to make one single script #}
{{ super() }}
<script>
let list = document.querySelectorAll('.grid-item');
console.log(list);
......@@ -58,11 +60,12 @@
function filterClass(list, filter) {
for (item of list) {
console.log(item);
if (item.classList.contains(filter)) {
item
.classList
.toggle('showTag');
}
.toggle('hideTag');
}
}
}
......
@import url(../layout/one-column.css);
@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:wght@300;700&family=Inria+Serif:ital,wght@0,300;0,700;1,300;1,700&display=swap');
.showTag {
.hideTag {
display: none;
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment