mirror of
https://github.com/JimenezJC/mshj_blog.git
synced 2026-03-07 23:34:36 -05:00
54 lines
No EOL
2.3 KiB
HTML
54 lines
No EOL
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{- partial "head.html" . -}}
|
|
|
|
<body>
|
|
{{- partial "header.html" . -}}
|
|
<div id="content">
|
|
{{- partial "topBar.html" . -}}
|
|
<main>
|
|
<div class="container">
|
|
|
|
<div class="components components-grid">
|
|
<div>
|
|
<aside id="menu">
|
|
<img src="/images/punpun.jpg" alt="keeper pfp">
|
|
|
|
<h3><a href="/">go home</a></h3>
|
|
<nav>
|
|
<ul>
|
|
<li><strong>useful links</strong></li>
|
|
<!-- Add your links here -->
|
|
</ul>
|
|
<ul>
|
|
<li><strong>blog categories</strong></li>
|
|
{{ range .Site.Taxonomies.categories.Alphabetical }}
|
|
<li>
|
|
<a href="{{ .Page.Permalink }}">{{ .Page.Title | lower }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
<div class="neocities-buttons">
|
|
<strong>buttons</strong>
|
|
<div class="button-slideshow">
|
|
<a href="https://dimden.dev/"><img src="https://dimden.dev/services/images/88x31.gif" alt="dimden"></a>
|
|
<a href="https://neocities.org/"><img src="https://neocities.org/img/neocities_88x31.gif" alt="neocities"></a>
|
|
<a href="https://www.w3.org/html/logo/"><img src="https://www.w3.org/html/logo/badge/html5-badge-h-solo.png" alt="html5"></a>
|
|
<a href="https://yesterweb.org/"><img src="https://yesterweb.org/img/badge.png" alt="yesterweb"></a>
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
</div>
|
|
<div class = "main-content">
|
|
<main>
|
|
{{- block "main" . }}{{- end }}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
{{- partial "footer.html" . -}}
|
|
</body>
|
|
|
|
</html> |