From d40e2bc68ae28a3d87fbdd21b8dd13937d6a9ff6 Mon Sep 17 00:00:00 2001 From: Ronak J Vanpariya Date: Wed, 10 Jun 2020 20:52:53 +0530 Subject: Changes in date format Generates the wrong date --- layouts/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/index.html b/layouts/index.html index 0c66d63..f8ae0f8 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -36,7 +36,7 @@
{{.Title }}

{{ .Title }}

-

{{ .PublishDate.Format "January 06, 2006"}}

+

{{ .PublishDate.Format "January 6, 2006"}}

Read More
@@ -99,4 +99,4 @@ -{{ end }} \ No newline at end of file +{{ end }} -- cgit v1.2.3 From f2facd9ec50aec0a7232ac76afc7b86df03f1e8b Mon Sep 17 00:00:00 2001 From: Donato Azevedo Date: Sat, 27 Jun 2020 09:46:44 -0300 Subject: Add linkedin social icon --- exampleSite/config.toml | 3 ++- layouts/partials/social.html | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index f9333cf..309ce39 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -114,4 +114,5 @@ yelp = "#" facebook = "#" twitter = "#" instagram = "#" -email = "#" \ No newline at end of file +email = "#" +linkedin = "#" \ No newline at end of file diff --git a/layouts/partials/social.html b/layouts/partials/social.html index 0e5174b..bffb519 100644 --- a/layouts/partials/social.html +++ b/layouts/partials/social.html @@ -48,4 +48,14 @@ {{ end }} + + {{ with .Site.Params.social.linkedin }} + + {{ end }} \ No newline at end of file -- cgit v1.2.3