Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
idyll/packages/idyll-cli/src/client/_index.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
51 lines (49 sloc)
1.81 KB
This file contains 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
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta | |
name="viewport" | |
content="width=device-width, initial-scale=1.0, minimum-scale=1.0" | |
/> | |
{{#title}} | |
<title>{{title}}</title> | |
<meta property="og:title" content="{{title}}" /> | |
{{/title}} {{^title}} | |
<title>Idyll</title> | |
<meta property="og:title" content="Idyll Project" /> | |
{{/title}} | |
<meta charset="utf-8" /> | |
{{#favicon}} | |
<link rel="shortcut icon" type="image/x-icon" href="{{favicon}}" /> | |
{{/favicon}} {{#shareImageUrl}} | |
<meta property="og:image" content="{{shareImageUrl}}" /> | |
<meta name="twitter:image:src" content="{{shareImageUrl}}" /> | |
<meta name="twitter:card" content="summary_large_image" /> | |
{{/shareImageUrl}} {{#shareImageWidth}} | |
<meta property="og:image:width" content="{{shareImageWidth}}" /> | |
{{/shareImageWidth}} {{#shareImageHeight}} | |
<meta property="og:image:height" content="{{shareImageHeight}}" /> | |
{{/shareImageHeight}} | |
<meta property="og:type" content="article" /> | |
{{#description}} | |
<meta property="og:description" content="{{description}}" /> | |
<meta property="description" content="{{description}}" /> | |
{{/description}} {{#url}} | |
<meta property="og:url" content="{{url}}" /> | |
{{/url}} {{#twitterHandle}} | |
<meta property="twitter:creator" content="{{twitterHandle}}" /> | |
{{/twitterHandle}} {{#usesTex}} | |
<link | |
rel="stylesheet" | |
href="//cdnjs.cloudflare.com/ajax/libs/KaTeX/0.9.0/katex.min.css" | |
/> | |
{{/usesTex}} {{#googleFontsUrl}} | |
<link rel="stylesheet" href="{{googleFontsUrl}}" /> | |
{{/googleFontsUrl}} | |
<link rel="stylesheet" href="{{staticOutputDir}}/{{outputCSS}}" /> | |
</head> | |
<body> | |
<div id="idyll-mount">{{{idyllContent}}}</div> | |
<script src="{{staticOutputDir}}/{{outputJS}}"></script> | |
</body> | |
</html> |