1
Fork 0
href-plus/source/ts/components/shared-footer.ts

20 lines
587 B
TypeScript

import {Component, html} from 'htm/preact';
import ExternalAnchor from './external-anchor.js';
export default class SharedFooter extends Component {
render() {
const githubUrl = 'https://github.com/Bauke/href-plus';
const versionText = `v${hrefPlusVersion}/${hrefPlusCommitHash}`;
const versionUrl = `${githubUrl}/tree/${hrefPlusCommitHash}`;
return html`
<footer class="shared-footer">
<${ExternalAnchor} text="GitHub" url=${githubUrl} />
${' '}
<${ExternalAnchor} text=${versionText} url=${versionUrl} />
</footer>
`;
}
}