Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « layouts - gitlab.com/kskarthik/monopriv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca77e9a9db86d6f15f573c5a0228b8ba37f6c1bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{define "main"}}
{{- partial "hero.html" . -}}
<section id="posts" class="container text-center mt-4">
	<h3 class="text-monospace">Recent Posts</h3>
		<div class="container">
			{{range first 5 .Site.RegularPages }}
				{{if eq .Section "post"}}
				<div class="mt-3">
					<h6><a href="{{.Permalink}}">{{.Title}}</a></h6>
					<small class="text-monospace">{{ .PublishDate.Format "January 2, 2006" }}</small>
				</div>
				{{end}}
			{{end}}
		</div>
</section>
<section class="container text-center mt-2">
	<a href='https://stallman.org/facebook.html' target="_blank">
		<img  class="img-responsive" src='{{ "img/no-facebook.png" | absURL }}' width="200px" alt="I'm Not On Faceboook">
	</a>
</section>
{{end}}