-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: gamestime102 <180412020+gamestime102@users.noreply.github.com>
- Loading branch information
1 parent
85addeb
commit 15594eb
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" . }} |