Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions content/theme/templates/article.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,13 @@
{% include "styles.html" %}
</head>
<body class="d-flex flex-column h-100">
<main class="flex-shrink-0">
{% include "menu.html" %}
{% include "breadcrumbs.html" %}

{% include "generic.html" %}

{% include "footer.html" %}
</main>
{% include "post.html" %}
<main class="flex-shrink-0">
{% include "breadcrumbs.html" %}
{% include "generic.html" %}
{% include "footer.html" %}
</main>
{% include "post.html" %}
</body>
</html>
{% endblock %}
26 changes: 13 additions & 13 deletions content/theme/templates/blog.html
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{% block head %}
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blogs - {{SITENAME}}</title>
{% include "styles.html" %}
</head>
<body class="d-flex flex-column h-100">
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blogs - {{SITENAME}}</title>
{% include "styles.html" %}
</head>
<body class="d-flex flex-column h-100">
{% include "menu.html" %}
<main class="flex-shrink-0">
<div>
{% include "menu.html" %}
{% include "breadcrumbs.html" %}
{% include "blogindex.html" %}
{% include "footer.html" %}
</div>
</main>
{% include "post.html" %}
</body>
</html>
</body>
</html>
{% endblock %}
2 changes: 1 addition & 1 deletion content/theme/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
{% include "styles.html" %}
</head>
<body class="d-flex flex-column h-100">
{% include "menu.html" %}
<main class="flex-shrink-0">
<div>
{% include "menu.html" %}
{% include "frontpage.html" %}
{% include "footer.html" %}
</div>
Expand Down
2 changes: 1 addition & 1 deletion content/theme/templates/menu.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- nav bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-info" aria-label="Fifth navbar example">
<nav class="navbar navbar-expand-lg navbar-light bg-info fixed-top" aria-label="Fifth navbar example">
<div class="container-fluid">
<a class="navbar-brand" href="/">
<img src="https://apache.org/img/asf_logo.png" alt="The Apache Software Foundation" style="height: 42px;">
Expand Down
2 changes: 1 addition & 1 deletion content/theme/templates/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
{% include "styles.html" %}
</head>
<body class="d-flex flex-column h-100">
{% include "menu.html" %}
<main class="flex-shrink-0">
<div>
{% include "menu.html" %}
{% include "generic.html" %}
{% include "footer.html" %}
</div>
Expand Down
3 changes: 3 additions & 0 deletions content/theme/templates/styles.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
</script>
<!-- pagefind search box styling -->
<style>
body {
padding-top: 56px;
}
.search-form {
right: 0;
left: initial !important;
Expand Down