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> <!DOCTYPE html>
<html lang="{{ Culture.Name }}"> <html lang="{{ Culture.Name }}">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{% page_title Site.SiteName, position: "before", separator: " - " %}</title> <title>{% page_title Site.SiteName, position: "before", separator: " - " %}</title>
{% resources type: "Meta" %} {% 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" %} {% style name: "benrameytheme" %}
{% resources type: "HeadLink" %}
{% resources type: "Stylesheet" %}
{% resources type: "HeadScript" %}
</head>
<body dir="{{ Culture.Dir }}">
<main> {% resources type: "HeadLink" %}
<div class="container"> {% resources type: "Stylesheet" %}
{% render_body %} {% resources type: "HeadScript" %}
</div> </head>
</main> <body dir="{{ Culture.Dir }}">
<header>
<footer> <div class="container">
{% render_section "Footer", required: false %} <div class="d-flex justify-content-between align-item-center">
</footer> <a
href="/"
{% resources type: "FootScript" %} class="d-flex justify-content-start align-items-center me-2 text-decoration-none"
</body> title="Home">
</html> <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>