This repository has been archived on 2025-05-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
hack13-blog/themes/hacksite/layouts/_default/index.html
2022-03-26 01:49:51 +00:00

47 lines
No EOL
1.9 KiB
HTML

<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
{{- partial "header.html" . -}}
<main role="main">
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-md-auto">
<img src="images/avatar2.webp" height="200" width="200" class="rounded float-left" alt="avatar"/>
</div>
<div class="col-6">
<h1 class="display-3">HACK13's Site</h1>
Just another fox on the internet.<br />
<strong>Other Aliases:</strong> Timothy Vyper, kite552, dothacker552<br />
<strong>Gender:</strong> Non-Binary/Enby<br />
<strong>Sexuality:</strong> <a href="https://hack13.link/NEqLJ" target="_blank">Demisexual</a> &amp; <a href="https://hack13.link/htuOr" target="_blank">Sapiosexual</a></p>
</div>
</div>
</div>
</div>
<main>
<div class="container">
<h2>Recent Blog Posts</h2>
{{ range first 3 .Site.RegularPages }}
<article>
<!-- this <div> includes the title summary -->
<div>
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
<tt>{{ .Date.Format "Jan 2, 2006" }}</tt><br/>
{{ .Summary }}
</div>
{{ if .Truncated }}
<!-- This <div> includes a read more link, but only if the summary is truncated... -->
<div>
<a href="{{ .RelPermalink }}">Read More…</a>
</div>
<br />
{{ end }}
</article>
{{ end }}
</div>
</main>
{{ partial "footer.html" . }}