Style header

This commit is contained in:
2023-03-31 08:55:44 -05:00
parent 3250ac1ebf
commit f876e949a9

View File

@@ -1,33 +1,53 @@
<!DOCTYPE html>
<html lang="{{ Culture.Name }}">
<head>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{% page_title Site.SiteName, position: "before", separator: " - " %}</title>
{% resources type: "Meta" %}
{% link type:"image/x-icon", rel:"shortcut icon", href:"~/BenRameyTheme/assets/favicon.ico" %}
{% link type: "image/x-icon", rel: "shortcut icon", href: "~/BenRameyTheme/assets/favicon.ico" %}
{% style name:"benrameytheme" %}
{% resources type: "HeadLink" %}
{% resources type: "Stylesheet" %}
{% resources type: "HeadScript" %}
</head>
<body dir="{{ Culture.Dir }}">
{% style name: "benrameytheme" %}
<main>
<div class="container">
{% render_body %}
</div>
</main>
<footer>
{% render_section "Footer", required: false %}
</footer>
{% resources type: "FootScript" %}
</body>
</html>
{% resources type: "HeadLink" %}
{% resources type: "Stylesheet" %}
{% resources type: "HeadScript" %}
</head>
<body dir="{{ Culture.Dir }}">
<header>
<div class="container">
<div class="d-flex justify-content-between align-item-center">
<a
href="/"
class="d-flex justify-content-start align-items-center me-2 text-decoration-none"
title="Home">
<img
src="https://en.gravatar.com/userimage/738990/32d8e61848233a67f5e02dcc43be0ff8.jpeg"
alt="Gravatar"
width="40"
height="40" />
<span class="ms-2">{{ Site.SiteName }}</span>
</a>
<div class="d-none d-sm-flex flex-column justify-content-around ms-2">
<small>{{ Site.Tagline }}</small>
</div>
</div>
</div>
</header>
<main>
<div class="container">
{% render_body %}
</div>
</main>
<footer>
{% render_section "Footer", required: false %}
</footer>
{% resources type: "FootScript" %}</body>
</head>
</html>