layouts/_default/baseof.html (72 lines of code) (raw):
<!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html lang="en">
<head>
<meta name="description" content="Apache Community Development"/>
<meta name="keywords" content="apache, apache community, community development, opensource"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
{{ template "_internal/opengraph.html" . }}
<title>Apache Community Development - {{ .Title }}</title>
<link rel="shortcut icon" href="/images/favicon.ico">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="/css/main.css" rel="stylesheet" media="screen">
<link href="/css/bootstrap.min.css" rel="stylesheet" media="screen">
<style type="text/css">
.footer {
text-align:center;
color:grey;
font-size:80%;
border-top: solid #ddd 1px;
margin-top:1em;
}
.navbar-brand img {
height: 50px;
}
</style>
{{ partial "matomo.html" . }}
{{ partial "rssfeed.html" . }}
</head>
<body>
<header class="navbar navbar-expand-lg navbar-dark bg-bright fixed-top">
<div class="container">
{{ partial "navbar.html" . }}
</div>
</header>
<main class="cd-main" id="content" role="main">
<div class="container">
<section id="content" class="row">
<div class="col-md-9">
<!-- // -->
</div>
<div class="col-md-12"><!-- // --></div>
</section>
<!-- not needed, not really using a tree structure {{ partial "breadcrumbs.html" . }} -->
<hr>
{{ partial "tags.html" .}}
{{ block "main" . }}{{ end }}
</div>
</main>
<footer class="page-footer bg-secondary mt-4 pt-3">
<div class="container text-center text-md-left mb-3">
<div class="row">
<div class="col-md-6 mt-md-0 mt-3">
<h5 class="text-uppercase">Trademarks</h5>
<p>
Apache®, the names of Apache projects, and the multicolor feather logo are
<a href="https://www.apache.org/foundation/marks/list/">registered trademarks or trademarks</a> of the Apache
Software Foundation in the United States and/or other countries.
</p>
</div>
<hr class="clearfix w-100 d-md-none pb-3">
<div class="col-md-6 mb-md-0 mb-3">
<h5 class="text-uppercase">Website sources</h5>
{{ partial "website-source.html" .}}
</div>
</div>
</div>
<div class="footer-copyright text-center py-3">
<em>Copyright © {{ now.Year }}, <a href="https://www.apache.org/">the Apache Software Foundation</a>. Licensed under the
<a rel="license" href="https://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a></em>
</div>
</footer>
<script src="/js/jquery.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</body>
</html>