mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 10:28:22 +01:00
64 lines
1.7 KiB
Plaintext
64 lines
1.7 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/css/sass.css"
|
|
media="screen"
|
|
rel="stylesheet" />
|
|
|
|
<noscript>
|
|
<link
|
|
href="/assets/css/noscript.css"
|
|
media="screen"
|
|
rel="stylesheet" />
|
|
</noscript>
|
|
</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/js/sass.js"></script>
|
|
<!-- Current page: {{ page.url }} -->
|
|
</body>
|
|
</html>
|