Created
February 10, 2021 14:45
-
-
Save nafeu/4f4b5f58a55b8544708cf8bf978ca4c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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