mirror of
https://github.com/danog/sass-site.git
synced 2024-12-03 09:57:58 +01:00
103 lines
3.1 KiB
Plaintext
103 lines
3.1 KiB
Plaintext
<!doctype html>
|
|
<html lang="en" class="no-js">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="description" content="Syntactically Awesome Style Sheets" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>Sass: {{ page.data.title or 'Syntactically Awesome Style Sheets' }}</title>
|
|
|
|
<link
|
|
rel="alternate"
|
|
type="application/atom+xml"
|
|
href="/feed.xml" />
|
|
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro:300,400,600|Source+Serif+Pro"
|
|
media="screen"
|
|
rel="stylesheet" />
|
|
<link
|
|
href="https://cdn.jsdelivr.net/npm/@docsearch/css@alpha"
|
|
media="screen"
|
|
rel="stylesheet" />
|
|
<link
|
|
href="/assets/dist/css/sass.css"
|
|
media="screen"
|
|
rel="stylesheet" />
|
|
|
|
<noscript>
|
|
<link
|
|
href="/assets/dist/css/noscript.css"
|
|
media="screen"
|
|
rel="stylesheet" />
|
|
</noscript>
|
|
|
|
<!-- Old version of analytics (https://developers.google.com/analytics/devguides/collection/gajs/). -->
|
|
<script>
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-535380-8']);
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
var ga = document.createElement('script');
|
|
ga.type = 'text/javascript';
|
|
ga.async = true;
|
|
ga.src = (
|
|
'https:' == document.location.protocol
|
|
? 'https://ssl'
|
|
: 'http://www'
|
|
) + '.google-analytics.com/ga.js';
|
|
var s = document.getElementsByTagName('script')[0];
|
|
s.parentNode.insertBefore(ga, s);
|
|
})();
|
|
</script>
|
|
|
|
<!-- New version of analytics (https://developers.google.com/analytics/devguides/collection/analyticsjs/). -->
|
|
<script>
|
|
(function(i, s, o, g, r, a, m) {
|
|
i['GoogleAnalyticsObject'] = r;
|
|
i[r] = i[r] || function() {
|
|
(i[r].q = i[r].q || []).push(arguments)
|
|
},
|
|
i[r].l = 1 * new Date();
|
|
a = s.createElement(o),
|
|
m = s.getElementsByTagName(o)[0];
|
|
a.async = 1;
|
|
a.src = g;
|
|
m.parentNode.insertBefore(a, m)
|
|
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
|
|
|
|
ga('create', 'UA-535380-14', 'sass-lang.com');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
</head>
|
|
|
|
<body data-layout="body">
|
|
{{ content }}
|
|
|
|
{% include "footer" %}
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/@docsearch/js@alpha"></script>
|
|
<script>
|
|
docsearch({
|
|
container: '#docsearch',
|
|
appId: 'Q9MULQONSV',
|
|
indexName: 'sass-lang',
|
|
apiKey: '2ebc7881b79986f58dc2f424769bf3fc',
|
|
transformItems: function(hits) {
|
|
var domain = window.location.origin + "/";
|
|
hits.forEach(function(hit) {
|
|
if (! hit.url.startsWith(domain)) {
|
|
hit.url = hit.url.replace(/^https?:\/\/[^\/]+\//, domain);
|
|
}
|
|
});
|
|
return hits;
|
|
}
|
|
});
|
|
</script>
|
|
<script src="/assets/dist/js/sass.js"></script>
|
|
<!-- Current page: {{ page.url }} -->
|
|
</body>
|
|
</html>
|