First commit of group-ironmen-master directory.

This commit is contained in:
2025-10-27 08:25:16 +08:00
commit a8467389ef
26390 changed files with 35396 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
social-links {
display: flex;
align-items: center;
}
social-links a {
display: flex;
align-items: center;
}
social-links a + a {
margin-left: 0.5em;
}

View File

@@ -0,0 +1,9 @@
<a href="https://ko-fi.com/gimplugin" title="Support me on Ko-fi" target="_blank">
<img loading="lazy" src="/images/kofi_p_logo_nolabel.webp" height="20"/>
</a>
<a href="https://github.com/christoabrown/group-ironmen-tracker" title="Github" target="_blank">
<img loading="lazy" src="/images/github-light.webp" width="20" height="20" />
</a>
<a href="https://discord.gg/XmAPkvqVpP" title="Discord" target="_blank">
<img loading="lazy" src="/images/discord-light.webp" width="18" height="20" />
</a>

View File

@@ -0,0 +1,22 @@
import { BaseElement } from "../base-element/base-element";
export class SocialLinks extends BaseElement {
constructor() {
super();
}
html() {
return `{{social-links.html}}`;
}
connectedCallback() {
super.connectedCallback();
this.render();
}
disconnectedCallback() {
super.disconnectedCallback();
}
}
customElements.define("social-links", SocialLinks);