Skip to content

Commit

Permalink
Create list.html
Browse files Browse the repository at this point in the history
Signed-off-by: gamestime102 <180412020+gamestime102@users.noreply.github.com>
  • Loading branch information
gamestime102 authored Jan 14, 2025
1 parent 85addeb commit 15594eb
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions layoutslayouts/ blog /list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{{ partial "header.html" . }}

<main id="content" role="main" style="max-width: 720px; margin: auto">
<div class="container space-2">

<article class="mb-5">
<header>
<h1 class="text-center">SimpleLogin Blog</h1>
</header>
<p class="text-center mt-5 mb-7">
Hi! This blog is about our journey to build an open-source tool to protect your privacy,
what we've learnt and some tips to take control of your privacy.
</p>
<hr>

{{.Content}}
</article>


<!-- Ranges through content/posts/*.md -->
{{ range .Pages }}
<div class="mb-5">
<a href="{{.Permalink}}">
<h3 class="">
{{.Title}}
</h3>
</a>


<p class="mb-1">
{{.Summary}}
<a href="{{.Permalink}}">read more →</a>
</p>

<small style="color: #6c7781">
{{ .Date.Format "January 2, 2006" }} -
Reading time: {{.ReadingTime}} minutes
</small>

<hr class="my-7">


</div>
{{ end }}


</div>
</main>



{{ partial "footer.html" . }}

0 comments on commit 15594eb

Please sign in to comment.