03a524a11f
The issue I had was that I wanted to have image caption in center and couldn't find any way to make it work without modifying the theme. This way users can automatically create custom headers, link stylesheets and similar. P.S. I'm no front end developer, if there's a better way to do something like this, it would be awesome to let people know.
15 lines
739 B
HTML
15 lines
739 B
HTML
<head>
|
|
<link href="https://gmpg.org/xfn/11" rel="profile">
|
|
{{ partial "header/meta.html" . }}
|
|
{{ partial "header/styles.html" . }}
|
|
{{ `<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->` | safeHTML }}
|
|
{{ "<!-- Icons -->" | safeHTML }}
|
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png">
|
|
<link rel="shortcut icon" href="/favicon.png">
|
|
{{ partial "header/feeds.html" . }}
|
|
{{ partial "header/custom.html" }}
|
|
</head>
|