Skip to content
Permalink
master
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
<!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>