From 518adf170a14de71e7bb59b700097087c6a58ea5 Mon Sep 17 00:00:00 2001 From: karthik Date: Sun, 8 Dec 2019 16:44:22 +0530 Subject: fix nav links, add name in LICENSE --- LICENSE | 2 +- layouts/partials/header.html | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index 46fe619..2aef2b7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2019 YOUR_NAME_HERE +Copyright (c) 2019 Sai Karthik Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/layouts/partials/header.html b/layouts/partials/header.html index e0801a1..b463f08 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -7,8 +7,8 @@ {{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }}{{ end }} -- cgit v1.2.3 From 3725b56faf57d0d83add5e857874406597d3cbab Mon Sep 17 00:00:00 2001 From: kskarthik Date: Sun, 8 Dec 2019 21:03:48 +0000 Subject: Adjust margin below publish date & email area --- layouts/_default/single.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/_default/single.html b/layouts/_default/single.html index d2c6a7c..d4ebfa5 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -3,7 +3,7 @@

{{.Title}}

- Posted on {{ .PublishDate.Format "January 2, 2006" }} | {{.ReadingTime}} minute read + Posted on {{ .PublishDate.Format "January 2, 2006" }} | {{.ReadingTime}} minute read {{ .Content }} tags: {{- range .Params.tags -}} @@ -14,7 +14,7 @@ {{ if .Site.Params.disqus }} {{ template "_internal/disqus.html" . }} {{ else }} - Please mail your comments to {{.Site.Params.email}}
+ Please mail your comments to {{.Site.Params.email}}
{{end}}
-- cgit v1.2.3 From 4b8d728b723dd301895492a89561d577c5c5a8c7 Mon Sep 17 00:00:00 2001 From: karthik Date: Mon, 9 Dec 2019 15:53:18 +0530 Subject: fix margin bottom for post content --- layouts/_default/single.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/_default/single.html b/layouts/_default/single.html index d4ebfa5..559e392 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -3,8 +3,8 @@

{{.Title}}

- Posted on {{ .PublishDate.Format "January 2, 2006" }} | {{.ReadingTime}} minute read - {{ .Content }} + Posted on {{ .PublishDate.Format "January 2, 2006" }} | {{.ReadingTime}} minute read +

{{ .Content }}

tags: {{- range .Params.tags -}} {{ . }} -- cgit v1.2.3