WHY BECOME A MEMBER?
You owe it to your
descendants to self identify as
indigenous. Our family group
is proactive in that we are not
waiting to be recognized as a
rights bearing community. As
a member you will be
qualified for whatever benefits
you are entitled to. We are
doing this with our
comprehensive indigenous
lineage record where each
member has developed a
documented dossier verifying
indigenous identity pursuant
to the 2016 Daniels supreme
court decision. Join now for
free! Your effort will make
your family proud!
INVITATION TO ALL PEOPLE
We invite all indigenous
leaders and people from
everywhere in Canada to talk
with us! Our community
recognizes status First Nation
sovereignty and seek
understanding and reciprocity
that leads to unity and kinship
treaties. From our perspective
government reconciliation is a
disguised attempt to continue
the assimilation process
inherited from British
jurisprudence. What is your
perspective?
var counterContainer = document.querySelector(".website-counter");
var resetButton = document.querySelector("#reset");
var visitCount = localStorage.getItem("page_view");
// Check if page_view entry is present
if (visitCount) {
visitCount = Number(visitCount) + 1;
localStorage.setItem("page_view", visitCount);
} else {
visitCount = 1;
localStorage.setItem("page_view", 1);
}
counterContainer.innerHTML = visitCount;
// Adding onClick event listener
resetButton.addEventListener("click", () => {
visitCount = 1;
localStorage.setItem("page_view", 1);
counterContainer.innerHTML = visitCount;
});