66 lines
2.0 KiB
Plaintext
66 lines
2.0 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html;charset=utf-8">
|
|
<meta name="MobileOptimized" content="width">
|
|
<meta name="HandheldFriendly" content="true">
|
|
<meta name="viewport" content="width=device-width">
|
|
{{#sprockets_stylesheet_tag}}app{{/sprockets_stylesheet_tag}}
|
|
{{#sprockets_stylesheet_tag}}print print{{/sprockets_stylesheet_tag}}
|
|
{{#css}}<link rel="stylesheet" type="text/css" href="{{custom_path}}/custom.css" media="all">{{/css}}
|
|
{{#noindex}}<meta name="robots" content="noindex, nofollow" />{{/noindex}}
|
|
|
|
<!--[if lte IE 8]>
|
|
{{#sprockets_stylesheet_tag}}ie7{{/sprockets_stylesheet_tag}}
|
|
<![endif]-->
|
|
|
|
<script>
|
|
var criticMarkup = '{{critic_markup}}';
|
|
var baseUrl = '{{base_url}}';
|
|
var uploadDest = 'uploads';
|
|
var perPageUploads = '{{per_page_uploads}}';
|
|
if (perPageUploads == 'true') {
|
|
uploadDest = uploadDest + window.location.pathname.replace(/.*gollum\/[-\w]+\//, "/").replace(/\.[^/.]+$/, "")
|
|
}
|
|
{{#page}}
|
|
var pageFullPath = '{{url_path}}';
|
|
{{/page}}
|
|
|
|
</script>
|
|
{{#sprockets_javascript_tag}}app{{/sprockets_javascript_tag}}
|
|
{{#use_identicon}}
|
|
{{#sprockets_javascript_tag}}identicon_canvas{{/sprockets_javascript_tag}}
|
|
{{/use_identicon}}
|
|
{{#mathjax}}
|
|
{{^mathjax_config}}
|
|
<script type="text/javascript">
|
|
window.MathJax = {
|
|
tex2jax: {
|
|
inlineMath: [ ['$','$'], ['\\(','\\)'] ],
|
|
displayMath: [ ['$$','$$'], ['\\[','\\]'] ],
|
|
processEscapes: true
|
|
},
|
|
TeX: { extensions: ["autoload-all.js"] }
|
|
};
|
|
</script>
|
|
{{/mathjax_config}}
|
|
{{#mathjax_config}}
|
|
<script type="text/javascript" src="{{base_url}}/{{mathjax_config}}"></script>
|
|
{{/mathjax_config}}
|
|
<script>(function(d,j){
|
|
j = d.createElement('script');
|
|
j.src = '//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML';
|
|
(d.head || d.getElementsByTagName('head')[0]).appendChild(j);
|
|
}(document));
|
|
</script>{{/mathjax}}
|
|
{{#js}}<script type="text/javascript" src="{{custom_path}}/custom.js"></script>{{/js}}
|
|
|
|
<title>{{title}}</title>
|
|
</head>
|
|
<body>
|
|
|
|
{{{yield}}}
|
|
|
|
</body>
|
|
</html>
|