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: fab665d3579ba797a10b397a2f7e01e421fb1ae3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{{define "main"}}
{{- partial "hero.html" . -}}
<section id="posts" class="container mt-4">
	<h3 class="text-monospace text-center">Recent Posts</h3>
	<div class="card-columns">
		{{range first 6 .Site.RegularPages }}
			{{if eq .Section "post"}}
				<div class="bg-light card">
					<div class="card-body">
					  <h5 class="font-weight-bold card-title">{{.Title}}</h5>
					  <h6 class="text-monospace card-subtitle mb-2 text-muted">{{ .PublishDate.Format "January 2, 2006" }}</h6>
					  <small class="card-text text-monospace">{{.Summary}}</small>
					  <a href="{{.Permalink}}" class="card-link">Read More...</a>
					</div>
			  </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>
	{{ if .Site.Params.search.enabled }}
		{{partial "search.html" .}}
	{{end}}
{{end}}