Skip to content

Commit

Permalink
Add tag to breadcrumb
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Poirier <[email protected]>
  • Loading branch information
ericpoirier committed Nov 1, 2022
1 parent af61485 commit 4def21f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,18 @@ document.addEventListener("DOMContentLoaded", function(event) {
});

$(document).ready(function() {

const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const tag = urlParams.get('news_tags');
if (tag !== null) {
const collection = document.querySelector('.breadcrumb');
let activeBreadcrumb = collection.querySelector('.active');
activeBreadcrumb.removeAttribute("class");
activeBreadcrumb.removeAttribute("aria-current");
collection.innerHTML += '<li class="active" aria-current="page">' + tag + '</li>';
}

$('.testimonial-container').html(
$(".testimonial-item").sort(function(){
return .5 - Math.random()
Expand Down

0 comments on commit 4def21f

Please sign in to comment.