4bd181d3cc
* fix: update to latest sapper fixes #416 * fix error and debug pages * requestIdleCallback makes column switching feel way nicer than double rAF * add export feature * add better csp info * workaround for sapper sub-page issue * clarify in readme about exporting * fix now config * switch from rIC to triple raf * style-loader is no longer used * update theming guide
20 lines
626 B
HTML
20 lines
626 B
HTML
<HiddenFromSSR>
|
|
<footer>
|
|
<p>
|
|
Pinafore is <ExternalLink href="https://github.com/nolanlawson/pinafore">open-source software</ExternalLink>
|
|
created by <ExternalLink href="https://nolanlawson.com">Nolan Lawson</ExternalLink> and distributed under the
|
|
<ExternalLink href="https://github.com/nolanlawson/pinafore/blob/master/LICENSE">AGPL License</ExternalLink>.
|
|
</p>
|
|
</footer>
|
|
</HiddenFromSSR>
|
|
<script>
|
|
import HiddenFromSSR from './HiddenFromSSR.html'
|
|
import ExternalLink from './ExternalLink.html'
|
|
|
|
export default {
|
|
components: {
|
|
HiddenFromSSR,
|
|
ExternalLink
|
|
}
|
|
}
|
|
</script> |