forked from google/WebFundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-base.html
42 lines (41 loc) · 1.68 KB
/
page-base.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="{{lang}}" class="checkov">
<head>
{% include "includes/page-head.html" %}
</head>
<body class="{% spaceless %}{{ bodyClass }}
{% if fullWidth %}devsite-full-width-page{% endif %}
{% if lowerTabs|length < 2 or not lowerTabs %}devsite-header-no-lower-tabs{% endif %}
{% endspaceless %}"
data-family="endorsed" id="top_of_page">
<div class="devsite-wrapper">
<div class="devsite-top-section-wrapper">
<header class="devsite-top-section nocontent">
{% include "includes/devsite-top-logo-row-wrapper-wrapper.html" %}
{% include "includes/devsite-collapsible-section.html" %}
</header>
</div>
<div id="gc-wrapper">
<div class="devsite-main-content clearfix" style="margin-top: 0px;">
{% include "includes/announcement-banner.html" %}
{% block content %}
{% endblock %}
</div>
{% include "includes/devsite-footer-promos.html" %}
{% include "includes/devsite-footer-linkboxes.html" %}
{% include "includes/devsite-footer-utility.html" %}
</div>
</div>
<!-- loads the code prettifier -->
<script async src="/wf-local/scripts/prettify-bundle.js" onload="prettyPrint();">
</script>
<script src="/wf-local/scripts/jquery-bundle.js"></script>
<script src="/wf-local/scripts/script_foot_closure.js"></script>
<script src="/wf-local/scripts/script_foot.js"></script>
<script src="/wf-local/scripts/devsite-dev.js"></script>
{% if servedFromAppEngine %}
{% include "includes/analytics.html" %}
{% include "includes/survey.html" %}
{% endif %}
</body>
</html>