@@ -38,10 +38,9 @@ const canonical = new URL(Astro.url.pathname, site);
3838 </a >
3939 <div class =" header-controls" >
4040 <nav aria-label =" Main navigation" class =" main-nav" >
41+ <a href ={ ` /${locale }/saved-signatures/ ` } >{ t .savedLibrary } </a >
4142 <a href ={ ` /${locale }/email-installation-guide/ ` } >{ t .guide } </a >
42- <a href ={ ` /${locale }/email-signature-templates/ ` } >{ t .templates } </a >
4343 <a href ={ ` /${locale }/faq/ ` } >{ t .faq } </a >
44- <a href ={ ` /${locale }/saved-signatures/ ` } >{ t .savedLibrary } </a >
4544 </nav >
4645 <div class =" header-donate-shell" >
4746 <div id =" header-donate-button-container" class =" header-donate-button-container" >
@@ -78,6 +77,23 @@ const canonical = new URL(Astro.url.pathname, site);
7877 location.href = `/${locale}${location.pathname.replace(/^\/[^/]+/, "")}`;
7978 });
8079
80+ const footer = document.querySelector("footer");
81+ const licenseLink = footer?.querySelector('a[href="/LICENSE"]');
82+ if (
83+ footer instanceof HTMLElement &&
84+ licenseLink instanceof HTMLAnchorElement &&
85+ !footer.querySelector('[data-creator-link="true"]')
86+ ) {
87+ footer.insertBefore(document.createTextNode(" · "), licenseLink);
88+
89+ const creatorLink = document.createElement("a");
90+ creatorLink.href = "https://github.com/anderson-camacho";
91+ creatorLink.textContent = "Creador";
92+ creatorLink.dataset.creatorLink = "true";
93+
94+ footer.insertBefore(creatorLink, licenseLink);
95+ }
96+
8197 let donationFeedbackTimeout;
8298
8399 const showDonationFeedback = () => {
0 commit comments