steve0greatness,
created on Sunday, 12 May 2024, 08:37:39 (1715503059),
received on Sunday, 12 May 2024, 08:38:17 (1715503097)
Author identity: Steve0Greatness <steve0greatnessiscool@gmail.com>
13e26211a914b749360be9872672546e9190a1fd
static/src/global.css
@@ -24,6 +24,7 @@ body {
main {
padding: 8px;
box-sizing: border-box;
max-width: 60vw;
margin: 0 auto;
background-color: #19191b;
@@ -32,6 +33,7 @@ main {
.breadcrumbs {
list-style: none;
padding: 8px;
box-sizing: border-box;
margin: 16px auto 8px auto;
width: 60vw;
border: 1px solid black;
@@ -49,6 +51,7 @@ main {
body > header {
display: flex;
padding: 20px;
box-sizing: border-box;
align-items: center;
width: 60vw;
margin: 0 auto;
@@ -87,6 +90,7 @@ body > footer {
margin-top: 12px;
width: 60vw;
padding-top: 3px;
box-sizing: border-box;
background-color: #19191b;
border-top: 1px currentColor solid;
}
views/_macros.html
@@ -1,16 +1,23 @@
{% macro GenerateBreadcrumbs(pages=[]) %}
<nav aria-label="breadcrumbs" aria-roledescription="Site breadcrumb">
<ol class="breadcrumbs">
{% if pages|length != 0 %}
<li>
<a href="/">Index</a>
</li>
{% for page in pages %}
<li {% if loop.revindex0 == 0 %}aria-current="location"{% endif %}>
{% if loop.revindex0 != 0 %}<a href="{{page['href']}}">{% endif %}
{{page["title"]}}
{% if loop.revindex0 != 0 %}</a>{% endif %}
<li >
<a
{% if loop.revindex0 == 0 %}aria-current="location"{% endif %}
href="{{page['href']}}"
>{{page["title"]}}</a>
</li>
{% endfor %}
{% else %}
<li>
<a href="/" aria-current="location">Index</a>
</li>
{% endif %}
</ol>
</nav>
{%- endmacro %}
views/index.html
@@ -6,6 +6,7 @@
<meta property="og:url" content="https://steve0greatness.github.io/" />
{% endblock %}
{% block title %}Homepage{% endblock %}
{% block breadcrumbs %}{% endblock %}
{% block content %}
<h1>Steve0Greatness</h1>
<p>Hey there! I'm <i>Steve0Greatness</i>(<a href="/blog/name.html">About my username</a>). Welcome to my website!</p>