mirror of
https://git.mirrors.martin98.com/https://github.com/google/draco
synced 2025-04-24 06:39:57 +08:00

new file: docs/_includes/analytics.html modified: docs/_layouts/home.html modified: docs/_layouts/spec.html
43 lines
1.2 KiB
HTML
43 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ page.title }}</title>
|
|
<link rel="stylesheet" href="{{ 'assets/css/spec-style.css' | relative_url }}">
|
|
<style>
|
|
body {counter-reset: h2}
|
|
h2 {counter-reset: h3}
|
|
h3 {counter-reset: h4}
|
|
h4 {counter-reset: h5}
|
|
h5 {counter-reset: h6}
|
|
|
|
h2:before {counter-increment: h2; content: counter(h2) ". "}
|
|
h3:before {counter-increment: h3; content: counter(h2) "." counter(h3) ". "}
|
|
h4:before {counter-increment: h4; content: counter(h2) "." counter(h3) "." counter(h4) ". "}
|
|
h5:before {counter-increment: h5; content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". "}
|
|
h6:before {counter-increment: h6; content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". "}
|
|
|
|
h2.nocount:before, h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before { content: ""; counter-increment: none }
|
|
|
|
ol.breadcrumb {
|
|
padding-left: 0;
|
|
font-style: italic;
|
|
font-size: smaller;
|
|
}
|
|
.breadcrumb li {
|
|
display: inline;
|
|
}
|
|
.breadcrumb li+li:before {
|
|
content:"» ";
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
{{ content }}
|
|
|
|
{% include analytics.html%}
|
|
</body>
|
|
</html>
|
|
|