More initial configuration

This commit is contained in:
Mike Wilson
2025-06-24 10:42:32 -04:00
parent d12af583a3
commit f6f4d52e29
2 changed files with 8 additions and 2 deletions

View File

@@ -7,6 +7,13 @@
</head> </head>
<body> <body>
<header>
<nav>
<a href="{{ get_url(path='/') }}">Home</a>
<a href="{{ get_url(path='@/about.md') }}">About</a>
<a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>
</nav>
</header>
<section class="section"> <section class="section">
<div class="container"> <div class="container">
{% block content %} {% endblock content %} {% block content %} {% endblock content %}

View File

@@ -2,7 +2,6 @@
{% block content %} {% block content %}
<h1 class="title"> <h1 class="title">
This is my blog made with Zola. Mike Wilson
</h1> </h1>
<p><a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>.</p>
{% endblock content %} {% endblock content %}