-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathdefault.html
23 lines (22 loc) · 966 Bytes
/
default.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!-- SPDX-License-Identifier: Apache-2.0 -->
<!-- SPDX-FileCopyrightText: Copyright 2021 Arm Limited and/or its affiliates <open-source-office@arm.com> -->
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/default_style.css">
{% if page.header_counter %} <link rel="stylesheet" href="{{site.baseurl}}/assets/css/header_counter.css"> {% endif %}
{% if page.set-quote-highlight %} <link rel="stylesheet" href="{{site.baseurl}}/assets/css/quote_highlight.css"> {% endif %}
</head>
<body>
{% if page.title %} <h1 id="title"> {{ page.title }} </h1> {% endif %}
{% include navbar.html %}
{% if page.toc %} <h1> Table of Contents </h1> {% endif %}
<div id="#content">
{% if page.toc %}{% include anchor_headings.html html=content anchorBody="^" %}
{% else %} {{ content }}
{% endif %}
</div>
</body>
</html>