Skip to content

Instantly share code, notes, and snippets.

@nafeu
Created February 10, 2021 14:45
Show Gist options
  • Select an option

  • Save nafeu/4f4b5f58a55b8544708cf8bf978ca4c4 to your computer and use it in GitHub Desktop.

Select an option

Save nafeu/4f4b5f58a55b8544708cf8bf978ca4c4 to your computer and use it in GitHub Desktop.
/* Step 3: Generate templates for html content */
const isHomePath = (path: string) => path === HOME_PATH;
const getStylesheetHref = (path: string) => {
return isHomePath(path) ? STYLESHEET_PATH : `../${STYLESHEET_PATH}`;
}
const getFaviconSvg = (favicon: string) => `
<svg xmlns="http://www.w3.org/2000/svg">
<text y="32" font-size="32">${favicon ? favicon : '🦕'}</text>
</svg>
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment